source: ReserveNGo-frontend/src/components/Project/login_.vue@ ff641e1

Last change on this file since ff641e1 was ff641e1, checked in by Ljubomir Ilievski <ilievski.ljubomir@…>, 3 months ago

Sredeno so inicijalnite fechovi

  • Property mode set to 100644
File size: 661 bytes
Line 
1<script setup>
2
3</script>
4
5<template>
6
7
8 <div class="container-xxl">
9
10 <div class="row justify-content-center ">
11
12 <div class="col-3">
13 <form action="http://localhost:8080/api/auth/login" method="POST">
14
15 <label for="email" class="form-label">Email</label>
16 <input name="email" id="email" class="form-control" type="email">
17
18 <label for="password" class="form-label">Password</label>
19 <input name="password" id="password" type="password" class="form-control">
20
21 <button type="submit" class="btn btn-dark mt-2">Login</button>
22 </form>
23 </div>
24
25
26
27 </div>
28
29
30 </div>
31</template>
32
33<style scoped>
34
35</style>
Note: See TracBrowser for help on using the repository browser.