Improve Registration / Login UI

Signed-off-by: Thomas Citharel <tcit@tcit.fr>
This commit is contained in:
Thomas Citharel 2019-10-10 14:20:09 +02:00
parent e56854f13b
commit 8d88aa1450
No known key found for this signature in database
GPG Key ID: A061B9DDE0CA0773
5 changed files with 157 additions and 138 deletions

View File

@ -1,16 +1,10 @@
<template> <template>
<div> <section class="container">
<section class="hero"> <div class="columns is-mobile is-centered">
<div class="hero-body"> <div class="column is-half-desktop">
<h1 class="title"> <h1 class="title">
{{ $t('Register an account on Mobilizon!') }} {{ $t('Register an account on Mobilizon!') }}
</h1> </h1>
</div>
</section>
<section>
<div class="container">
<div class="columns is-mobile">
<div class="column">
<form v-if="!validationSent"> <form v-if="!validationSent">
<b-field <b-field
:label="$t('Username')" :label="$t('Username')"
@ -38,17 +32,15 @@
<b-input type="textarea" v-model="person.summary"/> <b-input type="textarea" v-model="person.summary"/>
</b-field> </b-field>
<b-field grouped> <p class="control has-text-centered">
<div class="control"> <b-button type="is-primary" size="is-large" @click="submit()">
<button type="button" class="button is-primary" @click="submit()">
{{ $t('Create my profile') }} {{ $t('Create my profile') }}
</button> </b-button>
</div> </p>
</b-field>
</form> </form>
<div v-if="validationSent && !userAlreadyActivated"> <div v-if="validationSent && !userAlreadyActivated">
<b-message title="Success" type="is-success"> <b-message title="Success" type="is-success" closable="false">
<h2 class="title"> <h2 class="title">
{{ $t('Your account is nearly ready, {username}', { username: person.preferredUsername }) }} {{ $t('Your account is nearly ready, {username}', { username: person.preferredUsername }) }}
</h2> </h2>
@ -62,9 +54,7 @@
</div> </div>
</div> </div>
</div> </div>
</div>
</section> </section>
</div>
</template> </template>
<script lang="ts"> <script lang="ts">
@ -88,7 +78,7 @@ export default class Register extends Vue {
validationSent: boolean = false; validationSent: boolean = false;
sendingValidation: boolean = false; sendingValidation: boolean = false;
async mounted() { async created() {
// Make sure no one goes to this page if we don't want to // Make sure no one goes to this page if we don't want to
if (!this.email) { if (!this.email) {
await this.$router.replace({ name: RouteName.PAGE_NOT_FOUND }); await this.$router.replace({ name: RouteName.PAGE_NOT_FOUND });
@ -134,7 +124,7 @@ export default class Register extends Vue {
} }
</script> </script>
<style lang="scss"> <style lang="scss" scoped>
.avatar-enter-active { .avatar-enter-active {
transition: opacity 1s ease; transition: opacity 1s ease;
} }
@ -147,4 +137,8 @@ export default class Register extends Vue {
.avatar-leave { .avatar-leave {
display: none; display: none;
} }
.container .columns {
margin: 1rem auto 3rem;
}
</style> </style>

View File

@ -1,18 +1,15 @@
<template> <template>
<div class="container"> <div class="container">
<section class="hero">
<h1 class="title">
{{ $t('Welcome back!') }}
</h1>
</section>
<b-message v-if="errorCode === LoginErrorCode.NEED_TO_LOGIN" title="Info" type="is-info"> <b-message v-if="errorCode === LoginErrorCode.NEED_TO_LOGIN" title="Info" type="is-info">
{{ $t('You need to login.') }} {{ $t('You need to login.') }}
</b-message> </b-message>
<section v-if="!currentUser.isLoggedIn"> <section v-if="!currentUser.isLoggedIn">
<div class="columns is-mobile is-centered"> <div class="columns is-mobile is-centered">
<div class="column is-half"> <div class="column is-half-desktop">
<h1 class="title">
{{ $t('Welcome back!') }}
</h1>
<b-message title="Error" type="is-danger" v-for="error in errors" :key="error">{{ error }}</b-message> <b-message title="Error" type="is-danger" v-for="error in errors" :key="error">{{ error }}</b-message>
<form @submit="loginAction"> <form @submit="loginAction">
<b-field :label="$t('Email')"> <b-field :label="$t('Email')">
@ -29,27 +26,27 @@
/> />
</b-field> </b-field>
<div class="control has-text-centered"> <p class="control has-text-centered">
<button class="button is-primary is-large"> <button class="button is-primary is-large">
{{ $t('Login') }} {{ $t('Login') }}
</button> </button>
</div> </p>
<div class="control"> <p class="control">
<router-link <router-link
class="button is-text" class="button is-text"
:to="{ name: RouteName.SEND_PASSWORD_RESET, params: { email: credentials.email }}" :to="{ name: RouteName.SEND_PASSWORD_RESET, params: { email: credentials.email }}"
> >
{{ $t('Forgot your password ?') }} {{ $t('Forgot your password ?') }}
</router-link> </router-link>
</div> </p>
<div class="control" v-if="config && config.registrationsOpen"> <p class="control" v-if="config && config.registrationsOpen">
<router-link <router-link
class="button is-text" class="button is-text"
:to="{ name: RouteName.REGISTER, params: { default_email: credentials.email, default_password: credentials.password }}" :to="{ name: RouteName.REGISTER, params: { default_email: credentials.email, default_password: credentials.password }}"
> >
{{ $t('Register') }} {{ $t('Register') }}
</router-link> </router-link>
</div> </p>
</form> </form>
</div> </div>
</div> </div>
@ -166,3 +163,9 @@ export default class Login extends Vue {
} }
} }
</script> </script>
<style lang="scss" scoped>
.container .columns {
margin: 1rem auto 3rem;
}
</style>

View File

@ -11,7 +11,7 @@
<div class="columns"> <div class="columns">
<div class="column"> <div class="column">
<div class="content"> <div class="content">
<h3 class="title">{{ $t('Features') }}</h3> <h2 class="title">{{ $t('Features') }}</h2>
<ul> <ul>
<li>{{ $t('Create your communities and your events') }}</li> <li>{{ $t('Create your communities and your events') }}</li>
<li>{{ $t('Other stuff…') }}</li> <li>{{ $t('Other stuff…') }}</li>
@ -22,7 +22,7 @@
</router-link> </router-link>
<hr> <hr>
<div class="content"> <div class="content">
<h3 class="title">{{ $t('About this instance') }}</h3> <h2 class="title">{{ $t('About this instance') }}</h2>
<p> <p>
{{ $t("Your local administrator resumed it's policy:") }} {{ $t("Your local administrator resumed it's policy:") }}
</p> </p>
@ -67,21 +67,20 @@
/> />
</b-field> </b-field>
<b-field grouped> <p class="control has-text-centered">
<div class="control"> <button class="button is-primary is-large">
<button class="button is-primary">
{{ $t('Register') }} {{ $t('Register') }}
</button> </button>
</div> </p>
<div class="control"> <p class="control">
<router-link <router-link
class="button is-text" class="button is-text"
:to="{ name: RouteName.RESEND_CONFIRMATION, params: { email: credentials.email }}" :to="{ name: RouteName.RESEND_CONFIRMATION, params: { email: credentials.email }}"
> >
{{ $t("Didn't receive the instructions ?") }} {{ $t("Didn't receive the instructions ?") }}
</router-link> </router-link>
</div> </p>
<div class="control"> <p class="control">
<router-link <router-link
class="button is-text" class="button is-text"
:to="{ name: RouteName.LOGIN, params: { email: credentials.email, password: credentials.password }}" :to="{ name: RouteName.LOGIN, params: { email: credentials.email, password: credentials.password }}"
@ -89,8 +88,7 @@
> >
{{ $t('Login') }} {{ $t('Login') }}
</router-link> </router-link>
</div> </p>
</b-field>
</form> </form>
<div v-if="errors.length > 0"> <div v-if="errors.length > 0">
@ -167,7 +165,11 @@ export default class Register extends Vue {
display: none; display: none;
} }
h3.title { .container .columns {
margin: 1rem auto 3rem;
}
h2.title {
background: $secondary; background: $secondary;
display: inline; display: inline;
} }

View File

@ -1,6 +1,7 @@
<template> <template>
<section class="container"> <section class="container">
<div class="column"> <div class="columns is-mobile is-centered">
<div class="column is-half-desktop">
<h1 class="title"> <h1 class="title">
{{ $t('Resend confirmation email') }} {{ $t('Resend confirmation email') }}
</h1> </h1>
@ -8,9 +9,11 @@
<b-field label="Email"> <b-field label="Email">
<b-input aria-required="true" required type="email" v-model="credentials.email"/> <b-input aria-required="true" required type="email" v-model="credentials.email"/>
</b-field> </b-field>
<button class="button is-primary"> <p class="control has-text-centered">
{{ $t('Send confirmation email again') }} <b-button type="is-primary">
</button> {{ $t('Send me the confirmation email once again') }}
</b-button>
</p>
</form> </form>
<div v-else> <div v-else>
<b-message type="is-success" :closable="false" title="Success"> <b-message type="is-success" :closable="false" title="Success">
@ -21,6 +24,7 @@
</b-message> </b-message>
</div> </div>
</div> </div>
</div>
</section> </section>
</template> </template>
@ -73,3 +77,9 @@ export default class ResendConfirmation extends Vue {
} }
} }
</script> </script>
<style lang="scss" scoped>
.container .columns {
margin: 1rem auto 3rem;
}
</style>

View File

@ -1,6 +1,7 @@
<template> <template>
<section class="container"> <section class="container">
<div class="column"> <div class="columns is-mobile is-centered">
<div class="column is-half-desktop">
<h1 class="title"> <h1 class="title">
{{ $t('Password reset') }} {{ $t('Password reset') }}
</h1> </h1>
@ -9,9 +10,11 @@
<b-field label="Email"> <b-field label="Email">
<b-input aria-required="true" required type="email" v-model="credentials.email"/> <b-input aria-required="true" required type="email" v-model="credentials.email"/>
</b-field> </b-field>
<button class="button is-primary"> <p class="control has-text-centered">
{{ $t('Send email to reset my password') }} <b-button type="is-primary">
</button> {{ $t('Send me an email to reset my password') }}
</b-button>
</p>
</form> </form>
<div v-else> <div v-else>
<b-message type="is-success" :closable="false" title="Success"> <b-message type="is-success" :closable="false" title="Success">
@ -22,6 +25,7 @@
</b-message> </b-message>
</div> </div>
</div> </div>
</div>
</section> </section>
</template> </template>
@ -85,3 +89,9 @@ export default class SendPasswordReset extends Vue {
} }
} }
</script> </script>
<style lang="scss" scoped>
.container .columns {
margin: 1rem auto 3rem;
}
</style>