implement client users

This commit is contained in:
2025-09-10 20:53:13 +03:00
parent 45e14c9536
commit b8c163455c
3 changed files with 90 additions and 1 deletions

View 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 %}