Skip to content
GitLab
菜单
项目
群组
代码片段
帮助
帮助
支持
社区论坛
快捷键
?
提交反馈
登录/注册
切换导航
菜单
打开侧边栏
Zhang Guoqiang
yobot
提交
f6c2a625
提交
f6c2a625
编辑于
7月 27, 2020
作者:
Lancercmd
浏览文件
fix: better style
上级
0b417d16
变更
2
Hide whitespace changes
Inline
Side-by-side
src/client/public/template/login.html
浏览文件 @
f6c2a625
<!DOCTYPE html>
<html>
<head>
<meta
name=
'viewport'
content=
'width=device-width, initial-scale=1'
charset=
"utf-8"
/>
<title>
yobot登录
</title>
<script
src=
"https://cdn.bootcdn.net/ajax/libs/vue/2.6.11/vue.min.js"
></script>
<script
src=
"https://cdn.bootcdn.net/ajax/libs/element-ui/2.13.0/index.js"
></script>
<script
src=
"{{ url_for('yobot_static', filename='password.js') }}"
></script>
<link
rel=
"stylesheet"
href=
"https://cdn.bootcdn.net/ajax/libs/element-ui/2.13.0/theme-chalk/index.css"
>
<style>
#app
{
margin
:
auto
;
}
.container
{
display
:
flex
;
justify-content
:
center
;
align-items
:
center
;
flex-flow
:
column
;
max-width
:
400px
;
}
.comment
{
color
:
#aaa
;
line-height
:
20px
;
font-size
:
0.8em
;
margin
:
20px
0
;
}
</style>
<meta
name=
"viewport"
content=
"width=device-width, initial-scale=1"
charset=
"utf-8"
/>
<title>
yobot登录
</title>
<script
src=
"https://cdn.bootcdn.net/ajax/libs/vue/2.6.11/vue.min.js"
></script>
<script
src=
"https://cdn.bootcdn.net/ajax/libs/element-ui/2.13.0/index.js"
></script>
<script
src=
"{{ url_for('yobot_static', filename='password.js') }}"
></script>
<link
rel=
"stylesheet"
href=
"https://cdn.bootcdn.net/ajax/libs/element-ui/2.13.0/theme-chalk/index.css"
>
<style>
#app
{
margin
:
auto
;
}
.container
{
display
:
flex
;
justify-content
:
center
;
align-items
:
center
;
flex-flow
:
column
;
max-width
:
400px
;
}
.comment
{
color
:
#aaa
;
line-height
:
20px
;
font-size
:
0.8em
;
margin
:
20px
0
;
}
</style>
</head>
<body>
<div
id=
"app"
class=
"container"
>
<div
class=
"container"
>
<h1>
登录
</h1>
{% if reason -%}
<el-alert
title=
"{{ reason }}"
type=
"error"
>
</el-alert>
{% endif -%}
{% if advice -%}
<el-alert
title=
"{{ advice }}"
type=
"info"
>
</el-alert>
{% endif -%}
<div
style=
"margin: 20px;"
></div>
<el-form
ref=
"form"
:model=
"form"
:rules=
"rules"
label-width=
"80px"
>
<el-form-item
label=
"QQ号"
prop=
"qq"
>
<el-input
v-model=
"form.qq"
name=
"user"
placeholder=
"请输入登录QQ号"
@
keyup.enter.native=
"onSubmit"
></el-input>
</el-form-item>
<el-form-item
label=
"密码"
prop=
"pwd"
>
<el-input
v-model=
"form.pwd"
name=
"password"
placeholder=
"这个密码不是QQ密码"
type=
"password"
@
keyup.enter.native=
"onSubmit"
></el-input>
<p
class=
"comment"
>
* 如果不知道密码,您可以私聊机器人“{{ prefix }}登录”或“{{ prefix }}重置密码”
</p>
</el-form-item>
<el-form-item>
<el-button
type=
"primary"
@
click=
"onSubmit"
>
登录
</el-button>
</el-form-item>
</el-form>
</div>
<footer
style=
"text-align: center"
>
powered by
<a
href=
"https://github.com/pcrbot/yobot"
>
yobot
</a>
</footer>
<div
class=
"container"
>
<h1>
登录
</h1>
{% if reason -%}
<el-alert
title=
"{{ reason }}"
type=
"error"
>
</el-alert>
{% endif -%}
{% if advice -%}
<el-alert
title=
"{{ advice }}"
type=
"info"
>
</el-alert>
{% endif -%}
<div
style=
"margin: 20px;"
></div>
<el-form
ref=
"form"
:model=
"form"
:rules=
"rules"
label-width=
"80px"
>
<el-form-item
label=
"QQ号"
prop=
"qq"
>
<el-input
v-model=
"form.qq"
name=
"user"
placeholder=
"请输入登录QQ号"
@
keyup.enter.native=
"onSubmit"
></el-input>
</el-form-item>
<el-form-item
label=
"密码"
prop=
"pwd"
>
<el-input
v-model=
"form.pwd"
name=
"password"
placeholder=
"这个密码不是QQ密码"
type=
"password"
@
keyup.enter.native=
"onSubmit"
></el-input>
</el-form-item>
<p
class=
"comment"
>
* 如果不知道密码,您可以私聊机器人“{{ prefix }}登录”或“{{ prefix }}重置密码”
</p>
<el-form-item>
<el-button
type=
"primary"
@
click=
"onSubmit"
>
登录
</el-button>
</el-form-item>
</el-form>
</div>
<footer
style=
"text-align: center"
>
powered by
<a
href=
"https://github.com/pcrbot/yobot"
>
yobot
</a>
</footer>
</div>
<script>
new
Vue
({
el
:
'
#app
'
,
...
...
src/client/yobot.py
浏览文件 @
f6c2a625
...
...
@@ -34,7 +34,7 @@ else:
class
Yobot
:
Version
=
"[v3.6.4-beta.3]"
Version_id
=
20
5
Version_id
=
20
6
# "git rev-list --count HEAD"
def
__init__
(
self
,
*
,
...
...
编辑
预览
Supports
Markdown
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录