mirror of
https://github.com/aykhans/series-robot-web.git
synced 2025-09-03 21:43:34 +00:00
first commit
This commit is contained in:
25
src/account/templates/register.html
Normal file
25
src/account/templates/register.html
Normal file
@@ -0,0 +1,25 @@
|
||||
{% extends 'base.html' %}
|
||||
{% load crispy_forms_tags %}
|
||||
|
||||
|
||||
{% block title %} Signup {% endblock title %}
|
||||
|
||||
{% block content %}
|
||||
|
||||
<form method="POST">
|
||||
{% csrf_token %}
|
||||
{{form.media}}
|
||||
{{form|crispy}}
|
||||
<a href="https://imdb-api.com/Identity/Account/Register">Get API Key</a><br>
|
||||
<style>
|
||||
.btn:hover {
|
||||
background: #fff;
|
||||
color: #0069D9;
|
||||
}
|
||||
</style>
|
||||
<input type="submit" value="Signup" class="btn btn-primary mt-3 mb-3">
|
||||
<p class="mb-5">Already have an account? <a href="{% url 'login' %}">Login</a></p>
|
||||
</form>
|
||||
|
||||
{% endblock content %}
|
||||
|
Reference in New Issue
Block a user