Skip to content
Snippets Groups Projects
Commit 0493d8c2 authored by V S Tharunika's avatar V S Tharunika
Browse files

Adding header

parent fea705d6
No related branches found
No related tags found
No related merge requests found
<template>
<v-toolbar fixed class="cyan">
<v-toolbar-title class="mr-4">
BOOK RACKER
</v-toolbar-title>
</v-toolbar>
</template>
<script>
export default {
}
</script>
<style scoped>
</style>
\ No newline at end of file
/* eslint-disable */ /* eslint-disable */
<template> <template>
<v-layout column> <v-layout column>
<v-flex xs6 offset-xs3> <v-flex xs3 offset-xs6>
<div class="white elevation-2"> <div class="white elevation-2" style="width: 1455px;">
<v-toolbar flat dense class="cyan" dark> <v-toolbar flat dense class="cyan" dark>
<v-toolbar-title>Register</v-toolbar-title> <v-toolbar-title>Register</v-toolbar-title>
</v-toolbar> </v-toolbar>
<div class="pl-4 pr-4 pt-2 pb-2"> <div class="pl-4 pr-4 pt-2 pb-2">
<input type="email" name="email" v-model="email" placeholder="email"/> <v-text-field label="email" v-model="email"></v-text-field>
<br> <br>
<input type="password" name="password" v-model="password" placeholder="password"/> <v-text-field label="password" v-model="password"></v-text-field>
<br> <br>
<div class="error" v-html ="error"/> <div class="error" v-html ="error"/>
<br> <br>
<button @click="register">Register</button> <v-btn class="cyan" @click="register">Register</v-btn>
</div> </div>
</div> </div>
</v-flex> </v-flex>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment