30 lines
1.0 KiB
HTML
30 lines
1.0 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Gerenciar Domínios</title>
|
|
<link rel="stylesheet" href="../Css/styles.css">
|
|
</head>
|
|
|
|
<body>
|
|
<div class="container">
|
|
<h1>Gerenciar Domínios</h1>
|
|
<form id="domainForm">
|
|
<input type="text" id="domain" placeholder="Domínio (e.g., example.com)" required>
|
|
<textarea id="data" placeholder="Dados do domínio (JSON format)" required></textarea>
|
|
<div class="buttons">
|
|
<button type="button" onclick="addDomain()">Adicionar</button>
|
|
<button type="button" onclick="editDomain()">Editar</button>
|
|
<button type="button" onclick="deleteDomain()">Excluir</button>
|
|
</div>
|
|
</form>
|
|
<div id="message"></div>
|
|
<h2>Domínios Existentes</h2>
|
|
<ul id="domainList"></ul>
|
|
</div>
|
|
<script src="../js/Ambiente_Usuario/dominio.js"></script>
|
|
</body>
|
|
|
|
</html> |