forked from vitorfs/parsifal
-
Notifications
You must be signed in to change notification settings - Fork 1
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
Showing
7 changed files
with
62 additions
and
18 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -36,9 +36,6 @@ nosetests.xml | |
|
||
.DS_Store | ||
|
||
*.sublime-project | ||
*.sublime-workspace | ||
|
||
reminder.md | ||
|
||
*.sqlite3 | ||
|
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 |
---|---|---|
@@ -0,0 +1,14 @@ | ||
div.signup form input { | ||
font-size: 0.8em; | ||
margin-bottom: 1.2em; | ||
} | ||
|
||
div.signup form label { | ||
font-weight: 600; | ||
font-size: 1.0em; | ||
} | ||
|
||
div.signup h1.join { | ||
margin-bottom: 0.8em; | ||
font-size: 1.8em; | ||
} |
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 |
---|---|---|
@@ -0,0 +1,28 @@ | ||
{% extends 'base.html' %} | ||
|
||
{% block title %}Parsifal - Sign up{% endblock title %} | ||
|
||
{% block head_extra %} | ||
<link href="{{ STATIC_URL }}css/signup.css" rel="stylesheet" media="screen"> | ||
{% endblock head_extra %} | ||
|
||
{% block content %} | ||
<div class="signup"> | ||
<h1 class="join">Sign up for Parsifal</h1> | ||
<form action="/users/new/" method="post"> | ||
{% csrf_token %} | ||
<label for="username">Username:</label> | ||
<input type="text" placeholder="" name="username"> | ||
|
||
<label for="email">Email Address:</label> | ||
<input type="text" placeholder="" name="email"> | ||
|
||
<label for="email">Password:</label> | ||
<input type="password" placeholder="" name="password"> | ||
|
||
<label for="confirm-password">Confirm your password:</label> | ||
<input type="password" placeholder="" name="confirm-password"> | ||
<button type="submit" class="btn btn-success">Create an account</button> | ||
</form> | ||
</div> | ||
{% endblock content %} |
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
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