2026-03-16 13:11:56 +00:00
|
|
|
{% extends 'base.html' %}
|
|
|
|
|
|
|
|
|
|
{% block header %}
|
|
|
|
|
<div class="title">{% block title %}New{% endblock %}</div>
|
|
|
|
|
{% endblock %}
|
|
|
|
|
|
|
|
|
|
{% block content %}
|
2026-03-20 23:13:52 +00:00
|
|
|
<div class="container">
|
2026-03-16 13:11:56 +00:00
|
|
|
<form method="post">
|
|
|
|
|
<label for="name">Name</label>
|
|
|
|
|
<input name="name" id="name" required><br>
|
2026-03-28 23:02:55 +00:00
|
|
|
<label for="subtitle">Subtitle</label>
|
|
|
|
|
<input name="subtitle" id="subtitle"><br>
|
2026-03-16 13:11:56 +00:00
|
|
|
<label for="bio">Description</label>
|
|
|
|
|
<textarea name="bio" id="bio"></textarea><br>
|
2026-04-03 20:49:47 +01:00
|
|
|
<input type="radio" id="public" name="privacy" value=1 checked>
|
|
|
|
|
<label for="public">Public</label><br>
|
|
|
|
|
<input type="radio" id="private" name="privacy" value=0>
|
|
|
|
|
<label for="private">Private</label><br>
|
2026-03-16 13:11:56 +00:00
|
|
|
<input type="submit" value="Submit">
|
|
|
|
|
</form>
|
2026-03-17 02:00:02 +00:00
|
|
|
|
|
|
|
|
|
2026-03-20 23:13:52 +00:00
|
|
|
</div>
|
2026-03-16 13:11:56 +00:00
|
|
|
{% endblock %}
|