basic style for login

This commit is contained in:
overflowerror 2014-05-28 22:50:10 +02:00
parent 6ece6401b2
commit 10ae37f688

View file

@ -1,14 +1,28 @@
<!DOCTYPE html> <!DOCTYPE html>
<html> <html>
<head> <head>
<meta charset="UTF-8"> <meta charset="UTF-8">
<title>Diary Login</title> <title>Diary Login</title>
<link rel="stylesheet" href="{{ url_for('static',filename='style.css') }}"/>
<script src="{{ url_for('static',filename='script.js') }}"></script>
</head> </head>
<body> <body>
<form method="POST"> <div class="dot centered">
<input type="text" name="user" placeholder="Username"/><br/> <div id="mainContainer">
<input type="password" name="pass" placeholder="Password"/><br/> <div id="header">
<button type="submit">Login</button> <h1>Diary</h1>
</form> <div id="logout">
<a href="{{ url_for('logout') }}">Logout</a>
</div>
</div>
<div id="contentContainer">
<form method="POST">
<input type="text" name="user" placeholder="Username"/><br/>
<input type="password" name="pass" placeholder="Password"/><br/>
<input type="submit" value="Login">
</form>
</div>
<div>
<div>
</body> </body>
</html> </html>