14 lines
387 B
HTML
14 lines
387 B
HTML
{% extends "base.html" %}
|
||
{% block title %}Login – LaunchPad Admin{% endblock %}
|
||
{% block content %}
|
||
<h1>Login</h1>
|
||
<form method="post" class="form">
|
||
<label>Username
|
||
<input type="text" name="username" required autofocus />
|
||
</label>
|
||
<label>Password
|
||
<input type="password" name="password" required />
|
||
</label>
|
||
<button type="submit">Login</button>
|
||
</form>
|
||
{% endblock %} |