implement client users
This commit is contained in:
17
templates/create_user.html
Normal file
17
templates/create_user.html
Normal file
@@ -0,0 +1,17 @@
|
||||
{% 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 %}
|
||||
Reference in New Issue
Block a user