resman gut bevor DNS gefixt ist
This commit is contained in:
@@ -145,5 +145,144 @@ Domains jährlich: <span id="costDomain">0</span> €<br>
|
||||
<script src="js/api.js"></script>
|
||||
<script src="js/ui.js"></script>
|
||||
|
||||
<div id="resourceModal" class="modal">
|
||||
|
||||
<h3 id="modalTitle">Resource</h3>
|
||||
|
||||
<input type="hidden" id="resource_id">
|
||||
|
||||
<label>Name</label>
|
||||
<input id="name">
|
||||
|
||||
<label>Produkt</label>
|
||||
<input id="produkt">
|
||||
|
||||
<label>Provider</label>
|
||||
<input id="provider">
|
||||
|
||||
<label>Art</label>
|
||||
<input id="art">
|
||||
|
||||
<label>CPU</label>
|
||||
<input id="cpu">
|
||||
|
||||
<label>RAM</label>
|
||||
<input id="ram">
|
||||
|
||||
<label>Disk</label>
|
||||
<input id="disk">
|
||||
|
||||
<label>OS</label>
|
||||
<input id="os">
|
||||
|
||||
<label>Kosten Monat</label>
|
||||
<input id="kosten_monat">
|
||||
|
||||
<label>Kosten Jahr</label>
|
||||
<input id="kosten_jahr">
|
||||
|
||||
<label>Providername</label>
|
||||
<input id="providername">
|
||||
|
||||
<label>IPv6 Netz</label>
|
||||
<input id="ipv6_net">
|
||||
|
||||
<label>Bestelldatum</label>
|
||||
<input id="bestelldatum" type="date">
|
||||
|
||||
<label>Kündbar ab</label>
|
||||
<input id="kuendbar_ab" type="date">
|
||||
|
||||
<label>Kündigungsdatum</label>
|
||||
<input id="kuendigungsdatum" type="date">
|
||||
|
||||
<label>Status</label>
|
||||
<select id="status">
|
||||
<option value="aktiv">aktiv</option>
|
||||
<option value="gekündigt">gekündigt</option>
|
||||
</select>
|
||||
|
||||
<label>Bemerkung</label>
|
||||
<textarea id="bemerkung"></textarea>
|
||||
|
||||
<br><br>
|
||||
|
||||
<button onclick="saveResource()">Speichern</button>
|
||||
<button onclick="closeModal()">Abbrechen</button>
|
||||
|
||||
</div>
|
||||
|
||||
<div id="ipModal" class="modal">
|
||||
|
||||
<h3>IP Verwaltung</h3>
|
||||
|
||||
<input type="hidden" id="ip_resource_id">
|
||||
|
||||
<div id="ipList"></div>
|
||||
|
||||
<hr>
|
||||
|
||||
<input id="new_ip" placeholder="IP">
|
||||
<input id="new_type" placeholder="type">
|
||||
<input id="new_comment" placeholder="comment">
|
||||
|
||||
<button onclick="saveIP()">Add</button>
|
||||
|
||||
<br><br>
|
||||
|
||||
<button onclick="closeIPModal()">Close</button>
|
||||
|
||||
</div>
|
||||
|
||||
<div id="ipModal" class="modal">
|
||||
|
||||
<h3>IP Verwaltung</h3>
|
||||
|
||||
<input type="hidden" id="ip_resource_id">
|
||||
|
||||
<div id="ipList"></div>
|
||||
|
||||
<hr>
|
||||
|
||||
<input id="new_ip" placeholder="IP">
|
||||
<input id="new_type" placeholder="type">
|
||||
<input id="new_comment" placeholder="comment">
|
||||
|
||||
<button onclick="saveIP()">Add</button>
|
||||
|
||||
<br><br>
|
||||
|
||||
<button onclick="closeIPModal()">Close</button>
|
||||
|
||||
</div>
|
||||
|
||||
<div id="domainModal" class="modal">
|
||||
|
||||
<h3 id="domainModalTitle">Domain</h3>
|
||||
|
||||
<input type="hidden" id="domain_id">
|
||||
|
||||
<label>Domain</label>
|
||||
<input id="domain_name">
|
||||
|
||||
<label>Provider</label>
|
||||
<input id="domain_provider">
|
||||
|
||||
<label>IP Adresse</label>
|
||||
<input id="domain_ip">
|
||||
|
||||
<label>Jährliche Kosten</label>
|
||||
<input id="domain_cost" type="number" step="0.01">
|
||||
|
||||
<label>Notizen</label>
|
||||
<textarea id="domain_notes"></textarea>
|
||||
|
||||
<br><br>
|
||||
|
||||
<button onclick="saveDomain()">Save</button>
|
||||
<button onclick="closeDomainModal()">Cancel</button>
|
||||
|
||||
</div>
|
||||
|
||||
</body>
|
||||
</html>
|
||||
|
||||
Reference in New Issue
Block a user