diff options
author | Mateja <mail@matejamaric.com> | 2021-07-31 03:00:29 +0200 |
---|---|---|
committer | Mateja <mail@matejamaric.com> | 2021-07-31 03:00:29 +0200 |
commit | ba3efb90e53fb5dba1b9c4f5f819327be84120d1 (patch) | |
tree | ec5f0cd65f79c0a4f9c6b3f91d3110945be86059 /client/src/views/Register.vue | |
parent | 7b513296c114b7cf216861b038b118722c3815ba (diff) | |
download | mevn-ecommerce-main.tar.gz mevn-ecommerce-main.zip |
Diffstat (limited to 'client/src/views/Register.vue')
-rw-r--r-- | client/src/views/Register.vue | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/client/src/views/Register.vue b/client/src/views/Register.vue index 238b5df..7159f75 100644 --- a/client/src/views/Register.vue +++ b/client/src/views/Register.vue @@ -2,8 +2,8 @@ <div class="mt-5"> <div class="row d-flex justify-content-center"> <div class="col-md-7"> - <div class="card px-5 py-4"> - <div class="form-data"> + <div class="card px-5 py-4 mb-3"> + <form> <div class="text-center mb-4"> <h4>Register</h4> @@ -50,10 +50,10 @@ </div> <div class="mb-3"> - <button @click.stop.prevent="submit" class="btn btn-dark w-100">Register</button> + <input type="submit" value="Submit" class="btn btn-dark w-100" @click.stop.prevent="submit"> </div> - </div> + </form> </div> </div> </div> |