diff options
-rw-r--r-- | scipy/templates/login.html | 2 | ||||
-rw-r--r-- | scipy/templates/register.html | 2 | ||||
-rw-r--r-- | scipy/templates/upload-document.html | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/scipy/templates/login.html b/scipy/templates/login.html index 76964b1..31cdbdc 100644 --- a/scipy/templates/login.html +++ b/scipy/templates/login.html @@ -1,7 +1,7 @@ {% extends 'page.html' %} {% block content %} <div class="large-6 large-centered columns"> - <form class="form-signin" action="/accounts/login/" method="POST" enctype="multipart/form-data"> {% csrf_token %} + <form class="form-signin" action="/2013/accounts/login/" method="POST" enctype="multipart/form-data"> {% csrf_token %} <h3 class="form-signin-heading">Please sign in</h3> {{ form.as_p }} <input type="hidden" name = "next" value="{{ next }}"> diff --git a/scipy/templates/register.html b/scipy/templates/register.html index 07014ae..f96f256 100644 --- a/scipy/templates/register.html +++ b/scipy/templates/register.html @@ -1,7 +1,7 @@ {% extends 'page.html' %} {% block content %} <div class="large-6 large-centered columns"> - <form class="form-register" action="/accounts/register/" method="POST"> {% csrf_token %} + <form class="form-register" action="/2013/accounts/register/" method="POST"> {% csrf_token %} <h3 class="form-signin-heading">Please enter your details . . .</h3> {{ form.as_p }} <button class="success expand" type="submit">Sign Up</button> diff --git a/scipy/templates/upload-document.html b/scipy/templates/upload-document.html index 2beb912..19aed25 100644 --- a/scipy/templates/upload-document.html +++ b/scipy/templates/upload-document.html @@ -1,7 +1,7 @@ {% extends 'page.html' %} {% block content %} <div class="large-6 large-centered columns"> - <form class="form-signin" action="/accounts/upload-document/" method="POST" enctype="multipart/form-data"> {% csrf_token %} + <form class="form-signin" action="/2013/accounts/upload-document/" method="POST" enctype="multipart/form-data"> {% csrf_token %} <h3 class="form-signin-heading">Upload your abstract</h3> {{ form }} <input type="hidden" name = "next" value="{{ next }}"> |