<html lang="en">
|
|
|
|
<head>
|
|
<!-- Required meta tags -->
|
|
<meta charset="utf-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
|
|
|
|
<!-- Bootstrap CSS -->
|
|
<link rel="stylesheet" href="/static/bootstrap.min.css">
|
|
|
|
<!-- Loding font -->
|
|
<link href="https://fonts.googleapis.com/css?family=Montserrat:300,700" rel="stylesheet">
|
|
|
|
<!-- Custom Styles -->
|
|
<link rel="stylesheet" type="text/css" href="/static/styles.css">
|
|
|
|
<title>Login</title>
|
|
</head>
|
|
|
|
<body>
|
|
|
|
<!-- Backgrounds -->
|
|
|
|
<div id="login-bg" class="container-fluid">
|
|
|
|
<div class="bg-img"></div>
|
|
<div class="bg-color"></div>
|
|
</div>
|
|
|
|
<!-- End Backgrounds -->
|
|
|
|
<div class="container" id="login">
|
|
<div class="row justify-content-center">
|
|
<div class="col-lg-8">
|
|
<div class="login">
|
|
|
|
<h1>One-touch Book!</h1>
|
|
|
|
<!-- form -->
|
|
<form action="/confirmed" method="POST" name="login" id="form">
|
|
{{ form.hidden_tag() }}
|
|
<div class="form-group">
|
|
{{ form.username(class="form-control") }}
|
|
</div>
|
|
<div class="form-group">
|
|
{{ form.password(type="password",class="form-control") }}
|
|
</div>
|
|
<div class="form-group">
|
|
{{ form.email(class="form-control") }}
|
|
</div>
|
|
<div class="form-group">
|
|
{{ form.area(style="border-radius: 20px;")}}
|
|
</div>
|
|
|
|
<button type="submit" class="btn btn-lg btn-block btn-success">confirm</button>
|
|
</form>
|
|
<!-- End form -->
|
|
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
|
|
</body>
|
|
|
|
</html>
|