zoukankan      html  css  js  c++  java
  • django 登陆页配置

    node2:/django/mysite/mysite#cat urls.py
    """mysite URL Configuration
    
    The `urlpatterns` list routes URLs to views. For more information please see:
        https://docs.djangoproject.com/en/1.11/topics/http/urls/
    Examples:
    Function views
        1. Add an import:  from my_app import views
        2. Add a URL to urlpatterns:  url(r'^$', views.home, name='home')
    Class-based views
        1. Add an import:  from other_app.views import Home
        2. Add a URL to urlpatterns:  url(r'^$', Home.as_view(), name='home')
    Including another URLconf
        1. Import the include() function: from django.conf.urls import url, include
        2. Add a URL to urlpatterns:  url(r'^blog/', include('blog.urls'))
    """
    from django.conf.urls import include,url
    from django.contrib import admin
    from blog import views as view
    from news import views as newview
    urlpatterns =( 
    url(r'^admin/', admin.site.urls),
    url(r'^blog/$',view.archive),
    url(r'^articles/',include("news.urls")),
    url(r'^upload/$',newview.upload,name='upload'),
    url(r'^login/$', newview.login),
    url(r'^$', newview.index),
    url(r'^index/$', newview.index),
    )
    
    
    
    node2:/django/mysite/news#cat views.py
    # -*- coding: utf-8 -*-
    from __future__ import unicode_literals
    
    from django.shortcuts import render
    from django.http import HttpResponse
    
    # Create your views here.
    from django.shortcuts import render,render_to_response,redirect
    from .models import Article
    def index(req):
        return render_to_response('index.html')
    
    
    node2:/django/mysite/news/templates#cat index.html
    <form action="/login/" method="post">
        <label for="username">Your name: </label>
        <input id="username" type="text" name="username" value="{{ current_name }}">
        <label for="password">password: </label>
        <input id="password" type="text" name="password" value="{{ current_name }}">
        <input type="submit" value="OK">
    </form>
    
    
    
    
    from django.forms.extras.widgets import SelectDateWidget
    class UserForm(forms.Form):
        #Username = forms.CharField(max_length=100)
        Username = forms.CharField()
        Password = forms.CharField()
        #comment = forms.CharField(widget=forms.Textarea)
    def login(req):
        if req.method == "POST":
           print req
           print req.POST
           print type(req.POST)
           print req.POST['username']
           if req.POST['username'] =='aa':
              response = "You're looking at the second  results of question %s  %s" %(req.POST['username'],req.POST['password'])
              return HttpResponse(response )
           else:
               return redirect('/index/')
    def index(req):
        return render_to_response('index.html')
    

  • 相关阅读:
    电信生命周期说明
    find in linux 2 微信公众号
    GDB中应该知道的几个调试方法 2 微信公众号
    linux 下程序员专用搜索源码用来替代grep的软件ack(后来发现一个更快的: rg), 且有vim插件的 2 微信公众号
    linux下的 c 和 c++ 开发工具及linux内核开发工具 2 微信公众号
    linux下命令行发送邮件的软件:mutt 微信公众号
    腺样体肿大的综合治疗考虑 微信公众号
    打呼噜治疗方法 微信公众号
    vim 操作 2 微信公众号
    nginx之外的web 服务器caddy 微信公众号
  • 原文地址:https://www.cnblogs.com/hzcya1995/p/13349403.html
Copyright © 2011-2022 走看看