Skip to content
Snippets Groups Projects
Commit 924563a9 authored by Laila Majeed's avatar Laila Majeed
Browse files

Added new file

parent f9005f71
Branches
No related merge requests found
{% extends 'layout.html' %}
{% block body %}
<h1>Login</h1>
<form action="" method="POST">
<div class="form-group">
<label>Username</label>
<input type="text" name="username" class="form-control" value={{request.form.username}}>
</div>
<div class="form-group">
<label>Password</label>
<input type="password" name="password" class="form-control" value={{request.form.password}}>
</div>
<button type="submit" class="btn btn-primary">Submit</button>
</form>
{% endblock %}
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment