diff options
author | Vidhu Kant Sharma <vidhukant@vidhukant.com> | 2023-10-04 21:46:55 +0530 |
---|---|---|
committer | Vidhu Kant Sharma <vidhukant@vidhukant.com> | 2023-10-04 21:46:55 +0530 |
commit | e7c9922d36ea82a54579c1f9e6633d4ad7ad3e74 (patch) | |
tree | ead331ad3804f831dd9c2bfabf63b9fb34971f6c /src/views/Register.vue | |
parent | 92fb85b8afaacc4a8b5dbb41eea2d0e35eeb6862 (diff) |
added login and token refreshing
Diffstat (limited to 'src/views/Register.vue')
-rw-r--r-- | src/views/Register.vue | 21 |
1 files changed, 3 insertions, 18 deletions
diff --git a/src/views/Register.vue b/src/views/Register.vue index b96a0d1..9c3089a 100644 --- a/src/views/Register.vue +++ b/src/views/Register.vue @@ -34,32 +34,17 @@ import { RouterLink } from 'vue-router' <div> <form> <div class="form-floating mb-4"> - <input - id="login-username-input" - type="text" - class="form-control" - placeholder="" - /> + <input id="login-username-input" type="text" class="form-control" placeholder="" /> <label for="login-username-input">Username</label> </div> <div class="form-floating mb-4"> - <input - id="login-email-input" - type="text" - class="form-control" - placeholder="" - /> + <input id="login-email-input" type="text" class="form-control" placeholder="" /> <label for="login-email-input">E-Mail</label> </div> <div class="form-floating mb-4"> - <input - id="login-password-input" - type="password" - class="form-control" - placeholder="" - /> + <input id="login-password-input" type="password" class="form-control" placeholder="" /> <label for="login-password-input">Password</label> </div> |