Gitlab@Informatics

Skip to content
Snippets Groups Projects
Commit 71f19317 authored by 65160381's avatar 65160381
Browse files

Update file register.ejs

parent 70750f17
No related branches found
No related tags found
No related merge requests found
Pipeline #529 passed with warnings
......@@ -41,39 +41,40 @@
<form action="/user/register" method="POST">
<h1 class="h3 mb-3 fw-normal">Sign up</h1>
<!-- Email -->
<div class="form-floating">
<label for="floatingInput">Email address</label>
<input type="email" class="form-control" id="floatingInput" name="email" placeholder="name@example.com" required>
<label for="floatingUsername">Username</label>
<input type="text" class="form-control" id="floatingUsername" name="username" placeholder="Username" required>
</div>
<!-- Password -->
<div class="form-floating">
<label for="floatingPassword">Password</label>
<input type="password" class="form-control" id="floatingPassword" name="rpassword" placeholder="Password" required>
<label for="floatingFname">First Name</label>
<input type="text" class="form-control" id="floatingFname" name="fname" placeholder="First Name" required>
</div>
<!-- Confirm Password -->
<div class="form-floating">
<label for="floatingConfirmPassword">Confirm Password</label>
<input type="password" class="form-control" id="floatingConfirmPassword" name="confirm_password" placeholder="Confirm Password" required>
<label for="floatingLname">Last Name</label>
<input type="text" class="form-control" id="floatingLname" name="lname" placeholder="Last Name" required>
</div>
<!-- First Name -->
<div class="form-floating">
<label for="floatingFname">First Name</label>
<input type="text" class="form-control" id="floatingFname" name="fname" placeholder="First Name">
<label for="floatingInput">Email address</label>
<input type="email" class="form-control" id="floatingInput" name="email" placeholder="name@example.com" required>
</div>
<!-- Last Name -->
<div class="form-floating">
<label for="floatingLname">Last Name</label>
<input type="text" class="form-control" id="floatingLname" name="lname" placeholder="Last Name">
<label for="floatingPassword">Password</label>
<input type="password" class="form-control" id="floatingPassword" name="rpassword" placeholder="Password" required>
</div>
<div class="form-floating">
<label for="floatingConfirmPassword">Confirm Password</label>
<input type="password" class="form-control" id="floatingConfirmPassword" name="confirm_password" placeholder="Confirm Password" required>
</div>
<!-- Submit Button -->
<button class="btn btn-primary w-100 py-2" type="submit">Sign up</button>
</form>
</main>
<script src="/js/bootstrap.bundle.min.js" crossorigin="anonymous"></script>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment