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:
26
templates/login.html
Normal file
26
templates/login.html
Normal 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 %}
|
Reference in New Issue
Block a user