INTEL / templates /signup.html
malvika2003's picture
Upload folder using huggingface_hub
53d77b0 verified
raw
history blame contribute delete
353 Bytes
<!doctype html>
<title>Sign Up</title>
<h1>Sign Up</h1>
<form method="post">
<input type="text" name="username" placeholder="Username" required>
<input type="password" name="password" placeholder="Password" required>
<button type="submit">Sign Up</button>
</form>
<a href="{{ url_for('login') }}">Already have an account? Login</a>