SMTP Relay Host stub progress

This commit is contained in:
David Duque 2020-04-13 16:13:26 +01:00
parent 30221bdb11
commit aa62c6349e
No known key found for this signature in database
GPG Key ID: 2F327738A3C0AE3A
1 changed files with 25 additions and 13 deletions

View File

@ -13,26 +13,38 @@
<h3>SMTP Relay Configuration</h3>
<form class="form-horizontal" role="form" onsubmit="return false;">
<div class="form-group">
<table>
<table style="max-width: 400px">
<tr>
<label for="relay_host" class="col-sm-1 control-label">Relay Host</label>
<div class="col-sm-10">
<input type="text" class="form-control" id="relay_host" placeholder="host.domain.tld">
</div>
<td>
<label for="relay_host" class="col-sm-1 control-label">Relay Host</label>
</td>
<td>
<div class="col-sm-10">
<input type="text" class="form-control" id="relay_host" placeholder="host.domain.tld">
</div>
</td>
</tr>
<tr>
<label for="relay_auth_user" class="col-sm-1 control-label">Relay Host</label>
<div class="col-sm-10">
<input type="text" class="form-control" id="relay_auth_user" placeholder="user">
</div>
<td>
<label for="relay_auth_user" class="col-sm-1 control-label">Host Username</label>
</td>
<td>
<div class="col-sm-10">
<input type="text" class="form-control" id="relay_auth_user" placeholder="user">
</div>
</td>
</tr>
<tr>
<label for="relay_auth_pass" class="col-sm-1 control-label">Relay Host</label>
<div class="col-sm-10">
<input type="password" class="form-control" id="relay_auth_pass" placeholder="password">
</div>
<td>
<label for="relay_auth_pass" class="col-sm-1 control-label">Host Password/Key</label>
</td>
<td>
<div class="col-sm-10">
<input type="password" class="form-control" id="relay_auth_pass" placeholder="password">
</div>
</td>
</tr>
</table>
</div>