-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: addresses #2, somestyling of login and account creation forms
- Loading branch information
1 parent
b684563
commit 622c4ef
Showing
8 changed files
with
73 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
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,9 +1,16 @@ | ||
{# /accounts/activate/failed/ #} | ||
{# /accounts/activate/complete/ #} | ||
|
||
{% extends 'maps/base.html' %} | ||
|
||
{% block content %} | ||
|
||
Your account has been activated. | ||
<div class="page-header"> | ||
<p> | ||
<div class="spacer"></div><a class="link--inverse" href="{% url 'index' %}}">Home</a> | ||
</p> | ||
<h1>Success!</h1> | ||
</div> | ||
<p> | ||
Your account has been activated. Please <a href="{% url 'login' %}">login</a>. | ||
</p> | ||
|
||
{% endblock %} |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,27 @@ | ||
{# /accounts/register/ #} | ||
|
||
{% extends 'maps/base.html' %} | ||
|
||
{% block content %} | ||
<div class="page-header"> | ||
<p> | ||
<div class="spacer"></div><a class="link--inverse" href="{% url 'index' %}}">Home</a> | ||
</p> | ||
<h1>Account creation</h1> | ||
</div> | ||
<p> | ||
Accounts on the Directory are intended for people working in the Platform Co-operative ecosystem: actively managing | ||
organization profiles, doing academic or grantmaking research, or providing technical services. Accounts are not | ||
necessary to browse the directory. | ||
</p> | ||
|
||
<div class="spacer"></div> | ||
|
||
<form method="post"> | ||
{% csrf_token %} | ||
{{form}} | ||
<input type="submit" value="Submit"/> | ||
<div class="spacer"></div><button id="button" type="submit" class="button"> | ||
<span class="button__label">Create account</span></button> | ||
</form> | ||
|
||
{% endblock %} |
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