


This article mainly introduces in detail the Python3 bank account login system suitable for beginners to learn. It has certain reference value. Interested friends can refer to it.
The form is mainly responsible for the web page Data collection function. A form has three basic components: Form tag: This contains the URL of the CGI program used to process the form data and the method for submitting the data to the server. Form fields: including text boxes, password boxes, hidden fields, multi-line text boxes, check boxes, radio button boxes, drop-down selection boxes and file upload boxes, etc. Form buttons: include submit buttons, reset buttons and general buttons; used to transfer data to CGI scripts on the server or cancel input. Form buttons can also be used to control other processing tasks with defined processing scripts. In HTML, enter a URL in the address bar and open it. This sends a get request. If you want to use a POST request, you need to use a form.
The form in HTML is declared by the form tag. For example:
<form action="login" method="post"> <label>username:</label> <input type="text" name="username"><br /> <label>password:</label> <input type="password" name="password"><br /> <input type="submit" name="submit"> <form>
In the above code, the part contained by the form tag is It is the content of the form, focusing on the input part. There are three inputs in this form, one is of text type, representing ordinary text input, one is of password type, representing password input, and one is of submit type, which is a submission button; the form tag defines two attributes, one is action, which represents the path to submit the form, and the other is method, which represents the method for submitting the form. The default is GET. Next, let’s explain the specific process of the above example in detail. When the user clicks the submit button, the browser sends a POST request to the action path. The content of the request is as follows
# is to use the name of each other except Submit as the key value, and the actual filling data is used as a value package, and a post request is sent. If it is changed to get, then a GET request will be sent. Next, the request data received by the server is the same as the data sent from the client program. The next step is to perform corresponding processing based on the data sent and then return.
With the above knowledge in hand, we will start to make a simple registration and login system. The registration and login system we built has a registration function and a login function. After registration, the server stores the registration information locally and verifies whether the registration message is correct when logging in. There are some templates in web.py that already have some support. The specific code is as follows:
data = { 'username':'XXXXXXXX', 'password':'XXXXXXXX' }
The running effect is as follows: If you want to make it more beautiful, you can do it yourself Find some relevant information! What this implements is to enter a password and return a value. You can see that there is no local saving, yes, this is the pit left for you in TODO! Then just remove the comments in the login class above for password matching or something!
Enter your username and password to get:
The above is the detailed content of Detailed example of how Python implements registration and login system. For more information, please follow other related articles on the PHP Chinese website!

本篇文章给大家带来了关于Python的相关知识,其中主要介绍了关于Seaborn的相关问题,包括了数据可视化处理的散点图、折线图、条形图等等内容,下面一起来看一下,希望对大家有帮助。

本篇文章给大家带来了关于Python的相关知识,其中主要介绍了关于进程池与进程锁的相关问题,包括进程池的创建模块,进程池函数等等内容,下面一起来看一下,希望对大家有帮助。

本篇文章给大家带来了关于Python的相关知识,其中主要介绍了关于简历筛选的相关问题,包括了定义 ReadDoc 类用以读取 word 文件以及定义 search_word 函数用以筛选的相关内容,下面一起来看一下,希望对大家有帮助。

本篇文章给大家带来了关于Python的相关知识,其中主要介绍了关于数据类型之字符串、数字的相关问题,下面一起来看一下,希望对大家有帮助。

VS Code的确是一款非常热门、有强大用户基础的一款开发工具。本文给大家介绍一下10款高效、好用的插件,能够让原本单薄的VS Code如虎添翼,开发效率顿时提升到一个新的阶段。

本篇文章给大家带来了关于Python的相关知识,其中主要介绍了关于numpy模块的相关问题,Numpy是Numerical Python extensions的缩写,字面意思是Python数值计算扩展,下面一起来看一下,希望对大家有帮助。

pythn的中文意思是巨蟒、蟒蛇。1989年圣诞节期间,Guido van Rossum在家闲的没事干,为了跟朋友庆祝圣诞节,决定发明一种全新的脚本语言。他很喜欢一个肥皂剧叫Monty Python,所以便把这门语言叫做python。


Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

Dreamweaver Mac version
Visual web development tools

mPDF
mPDF is a PHP library that can generate PDF files from UTF-8 encoded HTML. The original author, Ian Back, wrote mPDF to output PDF files "on the fly" from his website and handle different languages. It is slower than original scripts like HTML2FPDF and produces larger files when using Unicode fonts, but supports CSS styles etc. and has a lot of enhancements. Supports almost all languages, including RTL (Arabic and Hebrew) and CJK (Chinese, Japanese and Korean). Supports nested block-level elements (such as P, DIV),

PhpStorm Mac version
The latest (2018.2.1) professional PHP integrated development tool

SublimeText3 Chinese version
Chinese version, very easy to use

MinGW - Minimalist GNU for Windows
This project is in the process of being migrated to osdn.net/projects/mingw, you can continue to follow us there. MinGW: A native Windows port of the GNU Compiler Collection (GCC), freely distributable import libraries and header files for building native Windows applications; includes extensions to the MSVC runtime to support C99 functionality. All MinGW software can run on 64-bit Windows platforms.
