summaryrefslogtreecommitdiff
path: root/nexus/templates/characters/create.django
diff options
context:
space:
mode:
authorBobby <[email protected]>2026-03-29 22:52:46 +0530
committerBobby <[email protected]>2026-03-29 22:52:46 +0530
commit9eb9b7f4bd552a641235764f66483e1f940fcfd9 (patch)
treeda520b923b5e6758d5457b6233dd6671fc640914 /nexus/templates/characters/create.django
parent65a143a0871c35989b7c7ea6723d39a0585c089e (diff)
downloadechoes-of-vaelun-main.tar.xz
echoes-of-vaelun-main.zip
feat: nexus account manager scaffold with auth, characters, realmsHEADmain
Diffstat (limited to 'nexus/templates/characters/create.django')
-rw-r--r--nexus/templates/characters/create.django20
1 files changed, 20 insertions, 0 deletions
diff --git a/nexus/templates/characters/create.django b/nexus/templates/characters/create.django
new file mode 100644
index 0000000..f2f08d1
--- /dev/null
+++ b/nexus/templates/characters/create.django
@@ -0,0 +1,20 @@
+{% extends "layouts/base.django" %}
+{% block content %}
+<div class="characters-container">
+ <h1>Create Character</h1>
+ {% if Error %}
+ <p class="error">{{ Error }}</p>
+ {% endif %}
+ <form method="POST" action="{% url 'characters.store' %}">
+ <label>Name</label>
+ <input type="text" name="name" required>
+ <label>Race</label>
+ <input type="text" name="race" required>
+ <label>Starting Kingdom</label>
+ <input type="text" name="starting_kingdom" required>
+ <label>Realm</label>
+ <input type="text" name="realm_id" required>
+ <button type="submit">Create</button>
+ </form>
+</div>
+{% endblock %} \ No newline at end of file