Files
mailgoserver/internal/webui/templates/add_domain.html
T
2026-08-12 12:56:22 +01:00

47 lines
2.2 KiB
HTML

{{define "title"}}Add Domain - Email Server Management{{end}}
{{define "page_title"}}Add New Domain{{end}}
{{define "content"}}
<div class="row justify-content-center">
<div class="col-lg-6">
<div class="card">
<div class="card-header"><h5 class="mb-0"><i class="bi bi-plus-circle me-2"></i>Add New Domain</h5></div>
<div class="card-body">
<form method="post">
<div class="mb-3">
<label for="domain_name" class="form-label"><i class="bi bi-globe me-1"></i>Domain Name</label>
<input type="text" class="form-control" id="domain_name" name="domain_name" placeholder="example.com" required
pattern="^[a-zA-Z0-9][a-zA-Z0-9-]*[a-zA-Z0-9]*\.?[a-zA-Z]{2,}$">
<div class="form-text">Enter the domain name that will be used for sending emails (e.g., example.com)</div>
</div>
<div class="alert alert-info">
<h6 class="alert-heading"><i class="bi bi-info-circle me-2"></i>What happens next?</h6>
<ul class="mb-0">
<li>Domain will be added to the system</li>
<li>DKIM key pair will be automatically generated</li>
<li>You'll need to configure DNS records</li>
<li>Add users or whitelist IPs for authentication</li>
</ul>
</div>
<div class="d-flex justify-content-between">
<a href="/pymta-manager/domains" class="btn btn-secondary"><i class="bi bi-arrow-left me-2"></i>Back to Domains</a>
<button type="submit" class="btn btn-primary"><i class="bi bi-plus-circle me-2"></i>Add Domain</button>
</div>
</form>
</div>
</div>
</div>
</div>
{{end}}
{{define "extra_js"}}
<script>
document.getElementById('domain_name').addEventListener('input', function(e) {
let value = e.target.value.toLowerCase();
value = value.replace(/^https?:\/\//, '');
value = value.replace(/\/$/, '');
e.target.value = value;
});
</script>
{{end}}