Create login ht...LOGIN

Create login html page

In the previous template selection chapter, we recommend that you download and use the Blue Exquisite and Simple MUI Backend Management Template from the php Chinese website download site. All the backend management functions of this tutorial All operations are performed through this template.

Rename the downloaded document to the "admin " folder. And put it under the built environment of WWW and the built vidoe project file.

As shown in the picture:

20.png

Find the login file inside. This file is the static html page for login.

Open the page:

21.png

It is found that there are .css and .js files in the header. These files determine the style of the file and the implementation of some dynamic js functions. Need to be referenced from css and js folders.

The css and js folders in the "admin" document are as follows:

22.png

Pay attention to the path pointed by the arrow.

After importing all the files, run the login.html file in the browser, and you will get the following page:

23.png

This is our background The management login static page is completed.




Next Section
<!DOCTYPE html> <html lang="zh-cn"> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no" /> <meta name="renderer" content="webkit"> <title>登录</title> <link rel="stylesheet" href="css/pintuer.css"> <link rel="stylesheet" href="css/admin.css"> <script src="js/jquery.js"></script> <script src="js/pintuer.js"></script> </head> <body> </body> </html>
submitReset Code
ChapterCourseware