mirror of
https://github.com/sigmasternchen/Diary
synced 2025-03-15 15:18:57 +00:00
basic style for login
This commit is contained in:
parent
6ece6401b2
commit
10ae37f688
1 changed files with 21 additions and 7 deletions
|
@ -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>
|
||||||
|
|
Loading…
Reference in a new issue