forked from adeyosemanputra/pygoat
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
4c1365a
commit 49aaa3e
Showing
2 changed files
with
32 additions
and
14 deletions.
There are no files selected for viewing
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,18 +1,25 @@ | ||
{% extends "introduction/base.html" %} | ||
{% block content %} | ||
|
||
{% load crispy_forms_tags %} | ||
{% load crispy_forms_tags %} | ||
|
||
<!--Register--> | ||
<div class="container py-5"> | ||
<h1>Register</h1> | ||
<form method="POST"> | ||
{% csrf_token %} | ||
{{ register_form|crispy }} | ||
<button class="btn btn-primary" type="submit">Register</button> | ||
</form> | ||
<p class="text-center">If you already have an account, <button type="submit" class="btn btn-info" style="margin-bottom:20px"><a href="/login" style="color: rgb(255, 255, 255); text-decoration: none;">Login</a></button> | ||
instead.</p> | ||
<div style="display: flex; flex-direction: row; flex-wrap: wrap"> | ||
<div class="card mx-auto" style="width: 35rem; margin: 10px"> | ||
<div class="conatiner border border-info rounded"> | ||
|
||
<!--Register--> | ||
<div class="container py-5"> | ||
<h1 style="color: #26282b;">Register</h1> | ||
<form method="POST"> | ||
{% csrf_token %} | ||
{{ register_form|crispy }} | ||
<button class="btn btn-primary" type="submit">Register</button> | ||
</form> | ||
<br> | ||
<p style="color:#26282b;">If you already have an account, <a href="/login" style="color:#027bff">Login</a> instead.</p> | ||
</div> | ||
</div> | ||
</div> | ||
</div> | ||
|
||
{% endblock %} |