You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
795 B
22 lines
795 B
extends @/layout/layout
|
|
|
|
block var
|
|
-title="登陆" // 网页标题
|
|
-hideHeader=true
|
|
|
|
block head
|
|
+css("style/views/login.css")
|
|
|
|
block content
|
|
.login
|
|
h1.title.is-1 登录
|
|
form(action='/login' method='post')
|
|
input(id="referrer" type="text" name="referrer" class="form-control" style="display:none;")
|
|
input(type='text', name='username', placeholder='用户名', required)
|
|
input(type='password', name='password', placeholder='密码', required)
|
|
+security
|
|
button.btn.btn-primary.btn-block.btn-large(type='submit') 现在登录!
|
|
a(href="/register" style="margin-top: 8px;color: white;font-size: 14px;display: inline-block;float: right") 前往注册
|
|
|
|
block script
|
|
+script("js/page/login.js")
|
|
|