1
This commit is contained in:
@@ -1,8 +1,10 @@
|
||||
<template>
|
||||
<div class="login-wrap" v-loading="loading">
|
||||
<template>
|
||||
<p class="ms_notes">Thank you for your login with your ORCID ID, please login or register TMR Publshing Group
|
||||
account to connect with your ORCID ID. </p>
|
||||
<p class="ms_notes">
|
||||
Thank you for your login with your ORCID ID, please login or register TMR Publshing Group account to connect with your ORCID
|
||||
ID.
|
||||
</p>
|
||||
<!-- <p class="ms_noter">
|
||||
如果你拥有账户但没有绑定相应的ORCID,请点击绑定操作,<br/>
|
||||
如果你没有账户,请点击注册进行相应操作
|
||||
@@ -20,19 +22,29 @@
|
||||
</el-form-item>
|
||||
<!-- 密码 -->
|
||||
<el-form-item prop="password">
|
||||
<el-input size="small" v-model="loginForm.password" auto-complete="off" placeholder="password" show-password>
|
||||
<el-input
|
||||
size="small"
|
||||
v-model="loginForm.password"
|
||||
auto-complete="off"
|
||||
placeholder="password"
|
||||
show-password
|
||||
>
|
||||
<i slot="prefix" class="el-icon-lock"></i>
|
||||
</el-input>
|
||||
</el-form-item>
|
||||
<!-- 按钮 -->
|
||||
<el-row justify="center">
|
||||
<el-form-item>
|
||||
<el-button type="primary" @click.native.prevent="handleLogin" class="register-submit" style="width: 100%;">bind</el-button>
|
||||
<el-button
|
||||
type="primary"
|
||||
@click.native.prevent="handleLogin"
|
||||
class="register-submit"
|
||||
style="width: 100%"
|
||||
>bind</el-button
|
||||
>
|
||||
</el-form-item>
|
||||
</el-row>
|
||||
</el-form>
|
||||
|
||||
|
||||
</div>
|
||||
</el-tab-pane>
|
||||
<el-tab-pane label="Register" name="second">
|
||||
@@ -47,13 +59,25 @@
|
||||
</el-form-item>
|
||||
<!-- 密码 -->
|
||||
<el-form-item prop="password">
|
||||
<el-input size="small" v-model="registerForm.password" auto-complete="off" placeholder="password" show-password>
|
||||
<el-input
|
||||
size="small"
|
||||
v-model="registerForm.password"
|
||||
auto-complete="off"
|
||||
placeholder="password"
|
||||
show-password
|
||||
>
|
||||
<i slot="prefix" class="el-icon-lock"></i>
|
||||
</el-input>
|
||||
</el-form-item>
|
||||
<!-- 确认密码 -->
|
||||
<el-form-item prop="passwordd">
|
||||
<el-input size="small" v-model="registerForm.passwordd" auto-complete="off" placeholder="password" show-password>
|
||||
<el-input
|
||||
size="small"
|
||||
v-model="registerForm.passwordd"
|
||||
auto-complete="off"
|
||||
placeholder="password"
|
||||
show-password
|
||||
>
|
||||
<i slot="prefix" class="el-icon-lock"></i>
|
||||
</el-input>
|
||||
</el-form-item>
|
||||
@@ -78,7 +102,13 @@
|
||||
<!-- 按钮 -->
|
||||
<el-row justify="center">
|
||||
<el-form-item>
|
||||
<el-button type="primary" @click.native.prevent="handleRegister" class="register-submit" style="width: 100%;">bind</el-button>
|
||||
<el-button
|
||||
type="primary"
|
||||
@click.native.prevent="handleRegister"
|
||||
class="register-submit"
|
||||
style="width: 100%"
|
||||
>bind</el-button
|
||||
>
|
||||
</el-form-item>
|
||||
</el-row>
|
||||
</el-form>
|
||||
@@ -104,36 +134,53 @@
|
||||
registerForm: {},
|
||||
activeName: 'first',
|
||||
registerRules: {
|
||||
username: [{
|
||||
username: [
|
||||
{
|
||||
required: true,
|
||||
message: 'Please enter your username.',
|
||||
trigger: 'blur'
|
||||
}],
|
||||
password: [{
|
||||
}
|
||||
],
|
||||
password: [
|
||||
{
|
||||
required: true,
|
||||
message: 'Please enter your password.',
|
||||
trigger: 'blur'
|
||||
}],
|
||||
passwordd: [{
|
||||
}
|
||||
],
|
||||
passwordd: [
|
||||
{
|
||||
required: true,
|
||||
message: 'Please enter your password.',
|
||||
trigger: 'blur'
|
||||
}],
|
||||
name: [{
|
||||
}
|
||||
],
|
||||
name: [
|
||||
{
|
||||
required: true,
|
||||
message: '请输入姓名',
|
||||
message: 'Please enter your real name.',
|
||||
trigger: 'blur'
|
||||
}],
|
||||
phone: [{
|
||||
}
|
||||
],
|
||||
phone: [
|
||||
{
|
||||
required: true,
|
||||
message: '请输入手机号',
|
||||
message: 'Please enter the correct mobile phone number.',
|
||||
trigger: 'blur'
|
||||
}],
|
||||
email: [{
|
||||
}
|
||||
],
|
||||
email: [
|
||||
{
|
||||
required: true,
|
||||
message: '请输入邮箱',
|
||||
message: 'Please enter your email address.',
|
||||
trigger: 'blur'
|
||||
}]
|
||||
},
|
||||
{
|
||||
type: 'email',
|
||||
message: 'Email address format error(example@gmail.com).',
|
||||
trigger: 'blur'
|
||||
}
|
||||
]
|
||||
}
|
||||
};
|
||||
},
|
||||
|
||||
Reference in New Issue
Block a user