moved form to dedicated page

This commit is contained in:
Matthew Saunders Brown 2023-03-30 10:15:11 -07:00
parent 8e411f0d6c
commit 2c891ac180

View File

@ -35,42 +35,7 @@
</check> </check>
<p> <p>
<a href="#Add_New_Website">Add new Website form</a> <a href="{{@NAV.fullpath}}/Add">Add new Website form</a>
</p> </p>
<hr>
<form action="{{@REALM}}" method="POST">
<h4 id="Add_New_Website">Add New Website</h4>
<fieldset>
<legend>Only the domain name is required</legend>
<label for="domain">Domain Name <small>(Do not include 'www', that will be aliased to the main domain)</small></label>
<input id="domain" name="domain" type="text" placeholder="example.com" value="" required>
<label for="username">Username <small>(System username, leave empty for auto-creation)</small></label>
<input id="username" name="username" type="text" placeholder="examplec" value="" required>
Check to jail user: <input type="checkbox" id="jail" name="jail" value="yes" checked>
<label for="macro">Config <small>(A valid Let's Encrypt certificate is required for VHostHTTPS)</small></label>
<select id="macro" name="macro">
<option value="VHostHTTP" selected>VHostHTTP</option>
<option value="VHostHTTPS">VHostHTTPS</option>
</select>
<label for="status">Status</label>
<select id="status" name="status">
<option value="1" selected>Enabled</option>
<option value="0">Disabled</option>
</select>
<input type="submit" value="Submit">
<button id="reset" type="reset" disabled>Reset</button>
<br>
<small>Any other form instructions go here.</small>
</fieldset>
</form>
<include href="footer.html" /> <include href="footer.html" />