2021-05-09 13:25:01 +03:00
|
|
|
{% extends "base.html" %}
|
|
|
|
|
{% block content %}
|
|
|
|
|
<div class="w3-container w3-third"></div>
|
|
|
|
|
<div class="w3-panel w3-card w3-third w3-center">
|
|
|
|
|
<label class="w3-text-red w3-container">{{ form_msg }}</label>
|
|
|
|
|
<form method="POST" action="" class="w3-container w3-margin">
|
|
|
|
|
<h2>Log in / Sign up</h2>
|
|
|
|
|
<label>Name</label>
|
|
|
|
|
<input class="w3-input w3-section" type="text"
|
|
|
|
|
name="name" placeholder="Enter Name" required="">
|
|
|
|
|
<label>Password</label>
|
|
|
|
|
<input class="w3-input w3-section" type="password"
|
|
|
|
|
name="password" placeholder="Enter Password" required="">
|
|
|
|
|
<input class="w3-button w3-green w3-section" type="submit" value="Submit">
|
|
|
|
|
</form>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="w3-container w3-third"></div>
|
|
|
|
|
{% endblock %}
|