2017-04-16 02:12:23 +10:00
|
|
|
<template>
|
2018-04-01 04:14:36 +10:00
|
|
|
<div class="settings panel panel-default">
|
|
|
|
<div class="panel-heading">
|
2017-11-08 21:34:15 +11:00
|
|
|
{{$t('registration.registration')}}
|
2017-04-16 02:12:23 +10:00
|
|
|
</div>
|
|
|
|
<div class="panel-body">
|
|
|
|
<form v-on:submit.prevent='submit(user)' class='registration-form'>
|
2017-04-17 20:57:02 +10:00
|
|
|
<div class='container'>
|
|
|
|
<div class='text-fields'>
|
|
|
|
<div class='form-group'>
|
2017-11-08 21:34:15 +11:00
|
|
|
<label for='username'>{{$t('login.username')}}</label>
|
2017-04-17 20:57:02 +10:00
|
|
|
<input :disabled="registering" v-model='user.username' class='form-control' id='username' placeholder='e.g. lain'>
|
|
|
|
</div>
|
|
|
|
<div class='form-group'>
|
2017-11-08 21:34:15 +11:00
|
|
|
<label for='fullname'>{{$t('registration.fullname')}}</label>
|
2017-04-17 20:57:02 +10:00
|
|
|
<input :disabled="registering" v-model='user.fullname' class='form-control' id='fullname' placeholder='e.g. Lain Iwakura'>
|
|
|
|
</div>
|
|
|
|
<div class='form-group'>
|
2017-11-08 21:34:15 +11:00
|
|
|
<label for='email'>{{$t('registration.email')}}</label>
|
2017-04-17 20:57:02 +10:00
|
|
|
<input :disabled="registering" v-model='user.email' class='form-control' id='email' type="email">
|
|
|
|
</div>
|
|
|
|
<div class='form-group'>
|
2017-11-08 21:34:15 +11:00
|
|
|
<label for='bio'>{{$t('registration.bio')}}</label>
|
2017-04-17 20:57:02 +10:00
|
|
|
<input :disabled="registering" v-model='user.bio' class='form-control' id='bio'>
|
|
|
|
</div>
|
|
|
|
<div class='form-group'>
|
2017-11-08 21:34:15 +11:00
|
|
|
<label for='password'>{{$t('login.password')}}</label>
|
2017-04-17 20:57:02 +10:00
|
|
|
<input :disabled="registering" v-model='user.password' class='form-control' id='password' type='password'>
|
|
|
|
</div>
|
|
|
|
<div class='form-group'>
|
2017-11-08 21:34:15 +11:00
|
|
|
<label for='password_confirmation'>{{$t('registration.password_confirm')}}</label>
|
2017-04-17 20:57:02 +10:00
|
|
|
<input :disabled="registering" v-model='user.confirm' class='form-control' id='password_confirmation' type='password'>
|
|
|
|
</div>
|
2017-04-22 01:52:42 +10:00
|
|
|
<!--
|
|
|
|
<div class='form-group'>
|
|
|
|
<label for='captcha'>Captcha</label>
|
|
|
|
<img src='/qvittersimplesecurity/captcha.jpg' alt='captcha' class='captcha'>
|
|
|
|
<input :disabled="registering" v-model='user.captcha' placeholder='Enter captcha' type='test' class='form-control' id='captcha'>
|
|
|
|
</div>
|
|
|
|
-->
|
2017-04-17 20:57:02 +10:00
|
|
|
<div class='form-group'>
|
2018-04-01 04:14:36 +10:00
|
|
|
<button :disabled="registering" type='submit' class='btn btn-default'>{{$t('general.submit')}}</button>
|
2017-04-17 20:57:02 +10:00
|
|
|
</div>
|
|
|
|
</div>
|
2017-06-19 23:35:35 +10:00
|
|
|
<div class='terms-of-service' v-html="termsofservice">
|
2017-04-17 20:57:02 +10:00
|
|
|
</div>
|
2017-04-16 02:12:23 +10:00
|
|
|
</div>
|
|
|
|
<div v-if="error" class='form-group'>
|
2018-04-01 04:14:36 +10:00
|
|
|
<div class='error'>{{error}}</div>
|
2017-04-16 02:12:23 +10:00
|
|
|
</div>
|
|
|
|
</form>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script src="./registration.js"></script>
|
|
|
|
<style lang="scss">
|
|
|
|
|
|
|
|
.registration-form {
|
2017-04-17 20:57:02 +10:00
|
|
|
display: flex;
|
2018-04-01 04:14:36 +10:00
|
|
|
flex-direction: column;
|
|
|
|
margin: 0.6em;
|
2017-04-17 20:57:02 +10:00
|
|
|
|
2018-04-01 04:14:36 +10:00
|
|
|
.container {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: row;
|
|
|
|
//margin-bottom: 1em;
|
|
|
|
}
|
2017-04-17 20:57:02 +10:00
|
|
|
|
2018-04-01 04:14:36 +10:00
|
|
|
.terms-of-service {
|
|
|
|
flex: 0 1 50%;
|
|
|
|
margin: 0.8em;
|
|
|
|
}
|
2017-04-16 02:12:23 +10:00
|
|
|
|
2018-04-01 04:14:36 +10:00
|
|
|
.text-fields {
|
|
|
|
margin-top: 0.6em;
|
|
|
|
flex: 1 0;
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
}
|
2017-04-17 20:57:02 +10:00
|
|
|
|
2018-04-01 04:14:36 +10:00
|
|
|
.form-group {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
padding: 0.3em 0.0em 0.3em;
|
|
|
|
line-height:24px;
|
|
|
|
}
|
2017-04-16 02:12:23 +10:00
|
|
|
|
2018-04-01 04:14:36 +10:00
|
|
|
form textarea {
|
|
|
|
border: solid;
|
|
|
|
border-width: 1px;
|
|
|
|
border-color: silver;
|
|
|
|
border-radius: 5px;
|
|
|
|
line-height:16px;
|
|
|
|
padding: 5px;
|
|
|
|
resize: vertical;
|
|
|
|
}
|
2017-04-16 02:12:23 +10:00
|
|
|
|
2018-04-01 04:14:36 +10:00
|
|
|
input {
|
|
|
|
border-radius: 5px;
|
|
|
|
padding: 0.1em 0.2em 0.2em 0.2em;
|
|
|
|
}
|
|
|
|
|
|
|
|
.captcha {
|
|
|
|
max-width: 350px;
|
|
|
|
margin-bottom: 0.4em;
|
|
|
|
}
|
2017-04-22 01:52:42 +10:00
|
|
|
|
2018-04-01 04:14:36 +10:00
|
|
|
.btn {
|
|
|
|
//align-self: flex-start;
|
|
|
|
//width: 10em;
|
|
|
|
margin-top: 0.6em;
|
|
|
|
height: 28px;
|
2017-04-16 02:12:23 +10:00
|
|
|
}
|
|
|
|
|
|
|
|
.error {
|
|
|
|
border-radius: 5px;
|
|
|
|
text-align: center;
|
2017-04-17 20:57:02 +10:00
|
|
|
margin: 0.5em 0.6em 0;
|
2017-04-16 02:12:23 +10:00
|
|
|
background-color: rgba(255, 48, 16, 0.65);
|
2018-04-01 04:14:36 +10:00
|
|
|
background-color: var(--cRed);
|
2017-04-16 02:12:23 +10:00
|
|
|
min-height: 28px;
|
|
|
|
line-height: 28px;
|
|
|
|
}
|
|
|
|
}
|
2017-04-17 20:57:02 +10:00
|
|
|
|
|
|
|
@media all and (max-width: 959px) {
|
|
|
|
.registration-form .container {
|
|
|
|
flex-direction: column-reverse;
|
|
|
|
}
|
|
|
|
}
|
2017-04-16 02:12:23 +10:00
|
|
|
</style>
|