mirror of
https://github.com/Adam-Ant/ClockworkAprilFools2017
synced 2024-11-08 21:06:21 +00:00
30 lines
674 B
HTML
30 lines
674 B
HTML
{% extends "layout.html" %}
|
|
|
|
{% block style %}
|
|
.jumbotron { text-align: center; }
|
|
h1.label {
|
|
display: inline-block;
|
|
margin-bottom: 0.3em;
|
|
}
|
|
form input, form button {
|
|
display: block;
|
|
margin: 0 auto;
|
|
}
|
|
.form-control {
|
|
width: 40%;
|
|
min-width: 280px;
|
|
}
|
|
{% endblock %}
|
|
|
|
{% block body %}
|
|
<div class="container">
|
|
<div class="jumbotron">
|
|
<form method="post">
|
|
<h1 class="label">What's yer username?</h1>
|
|
<input class="username form-group form-control" type="text" name="username" required>
|
|
<button class="btn btn-success form-group form-control" type="submit">Get me that juicy Plus!</button>
|
|
</form>
|
|
</div>
|
|
</div>
|
|
{% endblock %}
|