logs.unturf.com/templates/create_namespace.html.j2
Russell Ballestrini c9f8df96c2 working, we forked pyrafiles into pyralogs
modified:   app.py
	modified:   requirements.txt
	modified:   templates/base.html.j2
	new file:   templates/create_namespace.html.j2
	new file:   templates/display_agent_jwt.html.j2
	deleted:    templates/edit_media.html.j2
	modified:   templates/home.html.j2
	deleted:    templates/import_user_record.html.j2
	deleted:    templates/list_media.html.j2
	new file:   templates/manage_namespace.html.j2
	modified:   templates/profile.html.j2
	deleted:    templates/upload_media.html.j2
	deleted:    templates/user_media.html.j2
	deleted:    templates/view_media.html.j2
	deleted:    templates/view_media_details.html.j2
	new file:   templates/view_namespace_logs.html.j2
2025-01-11 19:13:51 -05:00

18 lines
440 B
Django/Jinja

{% extends 'base.html.j2' %}
{% block title %}Create Namespace{% endblock %}
{% block content %}
<h1>Create a New Namespace</h1>
<form method="POST">
<label for="name">Namespace Name:</label>
<input type="text" name="name" required><br><br>
<label>
<input type="checkbox" name="is_public">
Make Namespace Public
</label><br><br>
<button type="submit">Create Namespace</button>
</form>
{% endblock %}