1
0
mirror of https://github.com/Adam-Ant/QuotesDB synced 2025-06-15 05:41:13 +00:00

Add barebones files from previous work

This commit is contained in:
Adam Dodman
2017-10-03 02:18:13 +01:00
commit fd8e17926e
7 changed files with 297 additions and 0 deletions

26
templates/login.html Normal file
View File

@ -0,0 +1,26 @@
{% extends "layout.html" %}
{% block body %}
<form method="post" role="form" data-toggle="validator">
<div class="form-group has-feedback">
<label class="control-label col-sm-4" for="username">Username:</label>
<div class="col-xs-4 input-group">
<span class="input-group-addon"><i class="glyphicon glyphicon-user"></i></span>
<input type="text" class="form-control" placeholder="Enter username" id="username" name="username" required>
</div>
</div>
<div class="form-group">
<label class="control-label col-sm-4" for="pw">Password:</label>
<div class="col-xs-4 input-group">
<span class="input-group-addon"><i class="glyphicon glyphicon-lock"></i></span>
<input type="password" class="form-control" placeholder="Enter password" id="pw" name="pw">
</div>
</div>
<div class="form-group">
<div class="col-sm-offset-4">
<button type="submit" class="btn btn-primary">Submit</button>
</div>
</div>
</form>
{% endblock %}