33 lines
1.0 KiB
HTML
33 lines
1.0 KiB
HTML
<!DOCTYPE html>
|
|
<html><head>
|
|
<meta http-equiv="content-type" content="text/html; charset=UTF-8">
|
|
<title>Login</title>
|
|
<link rel="stylesheet" href="/static/css/main.css">
|
|
</head>
|
|
<body>
|
|
<div class="headerbar">
|
|
<a href="/">HectaMail</a>
|
|
<a href="/register">Sign up</a>
|
|
<a class="main" href="/account">Account</a>
|
|
</div>
|
|
<div class="content">
|
|
<h1>Login to your Email Account</h1>
|
|
<p1>Warning! This is only a proof of concept and has no actual use!</p1>
|
|
<form method="POST" action="/account/loginapi">
|
|
<label for="username">Email</label>
|
|
<div class="spacer">
|
|
<input type="text" name="email" required="">
|
|
</div>
|
|
<br>
|
|
<div class="Password">
|
|
<label for="password">Password</label>
|
|
<div class="spacer">
|
|
<input type="password" name="password" required="">
|
|
</div>
|
|
</div>
|
|
<br>
|
|
<input type="submit" value="Login">
|
|
</form>
|
|
</div>
|
|
<style type="text/css"></style></body></html>
|