Created
August 27, 2024 10:06
-
-
Save Liano-HyperionDev/0cd6b31ffcc29ef84b6f999e3db5d2c4 to your computer and use it in GitHub Desktop.
html
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html lang="en"> | |
<head> | |
<meta charset="UTF-8"> | |
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
<title>Register</title> | |
</head> | |
<body> | |
<h2>Please register in the form below</h2> | |
<br> | |
<form method="post"> | |
{% csrf_token %} | |
{{ form.as_p }} | |
<button type="submit">Signup</button> | |
</form> | |
or log in here: | |
<button><a href="{% url 'user_auth:user_login' %}"> Login Here</a></button> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment