Commit fb3dee0f by rongjun

init

parent f795dac9
# coding=utf8 # coding=utf8
import json import json
from django.core.urlresolvers import reverse from django.urls import reverse
from django.http import HttpResponse from django.http import HttpResponse
from django.http.response import HttpResponseRedirect from django.http.response import HttpResponseRedirect
from apps.manage.views import login, first_login from apps.manage.views import login, first_login
......
...@@ -57,6 +57,7 @@ MIDDLEWARE = [ ...@@ -57,6 +57,7 @@ MIDDLEWARE = [
'django.contrib.auth.middleware.AuthenticationMiddleware', 'django.contrib.auth.middleware.AuthenticationMiddleware',
'django.contrib.messages.middleware.MessageMiddleware', 'django.contrib.messages.middleware.MessageMiddleware',
'django.middleware.clickjacking.XFrameOptionsMiddleware', 'django.middleware.clickjacking.XFrameOptionsMiddleware',
'apps.manage.middleware.ManageMiddleware.ManageMiddleware',
] ]
ROOT_URLCONF = 'fish.urls' ROOT_URLCONF = 'fish.urls'
......
...@@ -221,9 +221,6 @@ ...@@ -221,9 +221,6 @@
<label class="label-password"></label> <label class="label-password"></label>
<input type="password" name="password" maxlength="32" placeholder="密码"> <input type="password" name="password" maxlength="32" placeholder="密码">
</div> </div>
<div class="form-group captcha-wrap">
{{ form }}
</div>
<div class="form-group no-border"> <div class="form-group no-border">
<label class="fl">记住我</label> <label class="fl">记住我</label>
<input type="checkbox" class="fl"> <input type="checkbox" class="fl">
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment