33 lines
833 B
Vue
33 lines
833 B
Vue
<template>
|
|
|
|
<div class='login-box'>
|
|
|
|
<div class='icon'></div>
|
|
|
|
<div class='form'>
|
|
<h3>Create an account</h3>
|
|
<label for='email'>EMAIL</label>
|
|
<input type='text' name='email' class='flat'>
|
|
<label for='username'>USERNAME</label>
|
|
<input type='text' name='username' class='flat'>
|
|
<label for='password'>PASSWORD</label>
|
|
<input type='password' name='password' class='flat'>
|
|
|
|
<button class='submit'>Continue</button>
|
|
<span>By registering, you agree to Discord's <a href='https://discordapp.com/terms'>Terms of Service</a> and <a href='https://discordapp.com/privacy'>Privacy Policy</a></span>
|
|
<hr>
|
|
<span>Already have an account? <router-link to='login'>Login</router-link></span>
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</template><script>
|
|
export default {
|
|
|
|
name: 'login-',
|
|
|
|
data(){ return { gs: gs.get }; }
|
|
|
|
}
|
|
|
|
</script> |