Changeset 763289e for src/main/resources/templates
- Timestamp:
- 10/31/22 23:42:15 (2 years ago)
- Branches:
- master
- Children:
- 044bd76
- Parents:
- 204464d
- Location:
- src/main/resources/templates
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
src/main/resources/templates/homepage.html
r204464d r763289e 3 3 <head> 4 4 <meta charset="UTF-8"> 5 <title> Title</title>5 <title>Homepage</title> 6 6 </head> 7 7 <body> -
src/main/resources/templates/login.html
r204464d r763289e 40 40 <div class="card"> 41 41 <div class="card-body py-5 px-md-5"> 42 <form >42 <form action="#" th:action="@{/login}" th:object="${stakeholder}" method="post"> 43 43 <!-- Email input --> 44 44 <div class="form-outline mb-4"> 45 <input type=" email" id="email" class="form-control"/>46 <label class="form-label" for=" email">Email address</label>45 <input type="text" id="username" class="form-control" required th:field="*{username}" /> 46 <label class="form-label" for="username">Username</label> 47 47 </div> 48 48 49 49 <!-- Password input --> 50 50 <div class="form-outline mb-4"> 51 <input type="password" id="password" class="form-control" />51 <input type="password" id="password" class="form-control" th:field="*{password}" /> 52 52 <label class="form-label" for="password">Password</label> 53 53 </div>
Note:
See TracChangeset
for help on using the changeset viewer.