11 lines
358 B
HTML
11 lines
358 B
HTML
|
{% extends "base.html" %}
|
||
|
{% block content %}
|
||
|
<h3>Add Account</h3>
|
||
|
<form method="post" action="">
|
||
|
<label>E-Mail</label>
|
||
|
<input name="mail" class="form-control">
|
||
|
<label>Password</label>
|
||
|
<input name="password" class="form-control" type="password"><br>
|
||
|
<input type="submit" class="btn btn-success" value="Add Account">
|
||
|
</form>
|
||
|
{% endblock %}
|