CoolFace
Apppublic

soapboxguy/MusicGen

sourceHugging Facecc-by-nc-4.0updated 3y agoView on Hugging Face
0likes
login.html21 linesDownload Raw Back to templates
1{% extends "base.html" %}2{% block content %}3 4<p>5    You must identify yourself first! We use a highly secured protocol6    where you just decide your username, and that's it. No password, no encryption,7    just pure trust.8</p>9 10{% if error %}11<p class="error">{{error}}</p>12{% endif %}13<form method="post" class="simple_form">14    <label> Username15        <input type="text" name="user">16    </label>17    <input type="submit" value="login">18<form>19 20{% endblock %}21