mirror of
https://github.com/csd4ni3l/grass_touching_captcha.git
synced 2026-01-01 04:23:45 +01:00
23 lines
1016 B
Django/Jinja
23 lines
1016 B
Django/Jinja
{% extends "base.jinja2" %}
|
|
{% block title %}Grass Touching Login{% endblock %}
|
|
{% block body %}
|
|
|
|
<div class="d-flex justify-content-center align-items-center" style="height: 75vh;">
|
|
<div class="bg-white rounded rounded-5 border border-5 border-white p-4">
|
|
<h2>Login</h2>
|
|
<form target="/login" method="post">
|
|
<div class="form-group" style="margin-top: 4%;">
|
|
<label for="usernameinput">Username</label>
|
|
<input name="username" class="form-control" id="usernameinput" placeholder="Enter username">
|
|
</div>
|
|
|
|
<div class="form-group" style="margin-top: 4%;">
|
|
<label for="passwordinput">Password</label>
|
|
<input name="password" class="form-control" id="passwordinput" placeholder="Enter password">
|
|
</div>
|
|
<button id="submit" type="submit" class="btn btn-primary mx-auto d-block" style="width: 100%; margin-top: 4%;">Submit</button>
|
|
</form>
|
|
</div>
|
|
</div>
|
|
|
|
{% endblock %} |