latest pushes

This commit is contained in:
Ronaldson Bellande 2023-12-03 18:58:02 -05:00
parent deacb85a49
commit 1891e467bb
2 changed files with 28 additions and 0 deletions

14
assets/html/login.html Normal file
View File

@ -0,0 +1,14 @@
<!-- Login form -->
<form>
<div class="form-group">
<label for="loginUsername">Username</label>
<input type="text" class="form-control" id="loginUsername" placeholder="Enter your username">
</div>
<div class="form-group">
<label for="loginPassword">Password</label>
<input type="password" class="form-control" id="loginPassword" placeholder="Enter your password">
</div>
<!-- Additional form fields can be added here -->
<button type="submit" class="btn btn-primary">Login</button>
</form>

14
assets/html/signup.html Normal file
View File

@ -0,0 +1,14 @@
<!-- Signup form -->
<form>
<div class="form-group">
<label for="signupUsername">Username</label>
<input type="text" class="form-control" id="signupUsername" placeholder="Enter your username">
</div>
<div class="form-group">
<label for="signupPassword">Password</label>
<input type="password" class="form-control" id="signupPassword" placeholder="Enter your password">
</div>
<!-- Additional form fields can be added here -->
<button type="submit" class="btn btn-primary">Signup</button>
</form>