Skip to content

Commit 8d6bf8b

Browse files
committed
Merge branch 'master' of https://github.com/interlegis/colab
2 parents e114797 + 662de3d commit 8d6bf8b

2 files changed

Lines changed: 1 addition & 5 deletions

File tree

src/home/views.py

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -18,10 +18,6 @@
1818
def index(request):
1919
"""Index page view"""
2020

21-
if request.method == 'POST':
22-
return signup(request)
23-
24-
2521
latest_threads = Thread.objects.all()[:6]
2622
hottest_threads = Thread.highest_score.from_haystack()[:6]
2723

src/templates/includes/big_header.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ <h1 style="font-size:50px;">Comunidades Interlegis</h1>
1010
<p><a href="/wiki/ComoUsarColab" style="color:#fff">Saiba mais...</a></p>
1111
</div>
1212
<div class="col-md-4 hidden-xs hidden-sm">
13-
<form action="." method="POST" role="form">
13+
<form action="{% url 'signup' %}" method="POST" role="form">
1414
{% csrf_token %}
1515
<div class="form-group">
1616
<input id="{{ user_form.first_name.id_for_label }}" class="form-control" name="{{ user_form.first_name.html_name }}" maxlength="{{ user_form.first_name.field.max_length }} " type="text" placeholder="Nome">

0 commit comments

Comments
 (0)