leotsha / templates /join.html
Sediba-AI
Initial Morutabana deployment: XLM-R + EduIntel + sentiment classifier
9d3f668
Raw
History Blame Contribute Delete
444 Bytes
{% extends "base.html" %}
{% block content %}
<div class="card" style="margin-top:32px">
<h2>Join the community</h2>
<p>No password needed. Just your name. Help build Sepedi AI.</p>
<form method="post" style="margin-top:16px">
{% csrf_token %}
<input type="text" name="name" placeholder="Your name" required autofocus>
<button type="submit" class="btn btn-blue">Start contributing →</button>
</form>
</div>
{% endblock %}