Skip to content

Instantly share code, notes, and snippets.

@rajatk16
Created November 18, 2018 02:59
Show Gist options
  • Select an option

  • Save rajatk16/aef76d8d649d64732c659c8f8d46ed47 to your computer and use it in GitHub Desktop.

Select an option

Save rajatk16/aef76d8d649d64732c659c8f8d46ed47 to your computer and use it in GitHub Desktop.
<template>
<div class="sign-up">
<img src="../assets/dc_logo.jpg" width="300px">
<h3>Create a new account</h3>
<input
v-model="email"
type="text"
class="input"
placeholder="Email"
required>
<br>
<input
v-model="password"
type="password"
class="input"
placeholder="Password"
required>
<br>
<button v-on:click="signUp" class="button">Sign Up!</button>
<button class="button">
<router-link to="/login">
Back
</router-link>
</button>
</div>
</template>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment