You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
70 lines
2.8 KiB
70 lines
2.8 KiB
<!DOCTYPE html> |
|
<html> |
|
<head> |
|
<meta charset="utf-8" /> |
|
<script src="jquery"></script> |
|
<script src="js"></script> |
|
<link rel="stylesheet" href="css" /> |
|
</head> |
|
<body id="login"> |
|
«navigation()» |
|
«userinfo()» |
|
<h1>Widerhall List Creation</h1> |
|
«messages()» |
|
<form method="POST" action="add_list"> |
|
<fieldset> |
|
<legend>List configuration</legend> |
|
<fieldset> |
|
<legend>Basic data</legend> |
|
<label> |
|
<input type="text" name="name" value="«data.name»" id="name" /> |
|
List name |
|
</label> |
|
<label> |
|
<input type="text" name="email" value="«data.email»" id="email" /> |
|
List E-Mail Address |
|
</label> |
|
</fieldset> |
|
<fieldset> |
|
<legend>IMAP protocol</legend> |
|
<label> |
|
<input type="text" name="imap_host" value="«data.imap_host»" id="imap_host" /> |
|
Hostname |
|
</label> |
|
<label> |
|
<input type="number" name="imap_port" value="«data.imap_port»" id="imap_port" /> |
|
Port |
|
</label> |
|
<label> |
|
<input type="text" name="imap_user" value="«data.imap_user»" id="imap_user" /> |
|
Username |
|
</label> |
|
<label> |
|
<input type="password" name="imap_pass" value="«data.imap_pass»" id="imap_pass" /> |
|
Password |
|
</label> |
|
</fieldset> |
|
<fieldset> |
|
<legend>SMTP protocol</legend> |
|
<label> |
|
<input type="text" name="smtp_host" value="«data.smtp_host»" id="smtp_host" /> |
|
Hostname |
|
</label> |
|
<label> |
|
<input type="number" name="smtp_port" value="«data.smtp_port»" id="smtp_port" /> |
|
Port |
|
</label> |
|
<label> |
|
<input type="text" name="smtp_user" value="«data.smtp_user»" id="smtp_user" /> |
|
Username |
|
</label> |
|
<label> |
|
<input type="password" name="smtp_pass" value="«data.smtp_pass»" id="smtp_pass" /> |
|
Password |
|
</label> |
|
</fieldset> |
|
<button type="submit">Save new mailing list</button> |
|
</fieldset> |
|
</form> |
|
</body> |
|
</html> |