28 lines
865 B
HTML
28 lines
865 B
HTML
<!DOCTYPE html>
|
|
<html lang="en" dir="ltr">
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<title>Signup</title>
|
|
|
|
<!-- Compiled and minified CSS -->
|
|
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/materialize/1.0.0/css/materialize.min.css">
|
|
|
|
<!-- Compiled and minified JavaScript -->
|
|
<script src="https://cdnjs.cloudflare.com/ajax/libs/materialize/1.0.0/js/materialize.min.js"></script>
|
|
|
|
</head>
|
|
<body>
|
|
{% block content %}
|
|
<div class="container section">
|
|
<h1>Login to your account</h1>
|
|
<form action="#" method="post">
|
|
<label for="username">Username:</label>
|
|
<input type="text" name="username" />
|
|
<label for="password">Password:</label>
|
|
<input type="password" name="password" />
|
|
<button type="submit">Submit</button>
|
|
</form>
|
|
</div>
|
|
{% endblock %}
|
|
</body>
|
|
</html> |