Add login link to registration
This commit is contained in:
parent
5f4aefa722
commit
4965eb5fa1
|
|
@ -61,9 +61,9 @@
|
||||||
<button class="button button--primary button--big actions__submit" data-cy="login-button">Anmelden</button>
|
<button class="button button--primary button--big actions__submit" data-cy="login-button">Anmelden</button>
|
||||||
<a class="actions__reset text-link" href="/accounts/password_reset/">Passwort vergessen?</a>
|
<a class="actions__reset text-link" href="/accounts/password_reset/">Passwort vergessen?</a>
|
||||||
</div>
|
</div>
|
||||||
<div class="registration">
|
<div class="account-link">
|
||||||
<p class="registration__text">Haben Sie noch kein Konto?</p>
|
<p class="account-link__text">Haben Sie noch kein Konto?</p>
|
||||||
<router-link class="registration__link text-link" :to="{name: 'registration'}">Jetzt registrieren
|
<router-link class="account-link__link text-link" :to="{name: 'registration'}">Jetzt registrieren
|
||||||
</router-link>
|
</router-link>
|
||||||
</div>
|
</div>
|
||||||
</form>
|
</form>
|
||||||
|
|
@ -160,12 +160,4 @@ export default {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
.registration {
|
|
||||||
margin-top: $large-spacing;
|
|
||||||
&__text {
|
|
||||||
font-family: $sans-serif-font-family;
|
|
||||||
margin-bottom: $small-spacing;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
</style>
|
</style>
|
||||||
|
|
|
||||||
|
|
@ -110,7 +110,12 @@
|
||||||
<small class="skillboxform-input__error" data-cy="registration-error" v-if="registrationError">{{registrationError}}</small>
|
<small class="skillboxform-input__error" data-cy="registration-error" v-if="registrationError">{{registrationError}}</small>
|
||||||
</div>
|
</div>
|
||||||
<div class="actions">
|
<div class="actions">
|
||||||
<button class="button button--primary button--big actions__submit" data-cy="register-button">Jetzt registration</button>
|
<button class="button button--primary button--big actions__submit" data-cy="register-button">Jetzt registrieren</button>
|
||||||
|
</div>
|
||||||
|
<div class="account-link">
|
||||||
|
<p class="account-link__text">Haben Sie ein Konto?</p>
|
||||||
|
<router-link class="account-link__link text-link" :to="{name: 'login'}">Jetzt anmelden
|
||||||
|
</router-link>
|
||||||
</div>
|
</div>
|
||||||
</form>
|
</form>
|
||||||
</div>
|
</div>
|
||||||
|
|
|
||||||
|
|
@ -6,3 +6,11 @@
|
||||||
font-weight: 600;
|
font-weight: 600;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.account-link {
|
||||||
|
margin-top: $large-spacing;
|
||||||
|
&__text {
|
||||||
|
font-family: $sans-serif-font-family;
|
||||||
|
margin-bottom: $small-spacing;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue