17 lines
538 B
HTML
17 lines
538 B
HTML
{% extends "base.html" %}
|
||
{% block title %}Create User – LaunchPad Admin{% endblock %}
|
||
{% block content %}
|
||
<h1>Create User</h1>
|
||
<form method="post" class="form">
|
||
<label>Username
|
||
<input type="text" name="username" required autofocus />
|
||
</label>
|
||
<label>Password
|
||
<input type="password" name="password" minlength="6" required />
|
||
</label>
|
||
<div class="form-actions">
|
||
<a class="btn" href="{{ url_for('apps_list') }}">Cancel</a>
|
||
<button class="btn primary" type="submit">Create</button>
|
||
</div>
|
||
</form>
|
||
{% endblock %} |