Skip to content

Commit

Permalink
Update signup.html
Browse files Browse the repository at this point in the history
  • Loading branch information
en-25 authored Jul 3, 2024
1 parent 42030f0 commit 281b564
Showing 1 changed file with 27 additions and 25 deletions.
52 changes: 27 additions & 25 deletions website/signin/signup.html
Original file line number Diff line number Diff line change
Expand Up @@ -8,32 +8,34 @@
<script src="../js/signin.js"></script>
</head>
<body>
<div class="wrapper">
<div class="logo">
<a href="../index">
<img src="https://i.pinimg.com/originals/1c/54/f7/1c54f7b06d7723c21afc5035bf88a5ef.png">
</a>
</div>
<div class="container">
<h2>Register</h2>
<form action="../user/dashboard" method="GET">
<div class="input-group">
<label for="username">Username</label>
<input type="text" id="username" name="username" required>
</div>
<div class="input-group">
<label for="email">Email</label>
<input type="email" id="email" name="email" required>
</div>
<div class="input-group">
<label for="password">Password</label>
<input type="password" id="password" name="password" required>
<div style="margin-top: 4rem; margin-bottom: 1rem;">
<div class="wrapper">
<div class="logo">
<a href="../index">
<img src="https://i.pinimg.com/originals/1c/54/f7/1c54f7b06d7723c21afc5035bf88a5ef.png">
</a>
</div>
<div class="container">
<h2>Register</h2>
<form action="../user/dashboard" method="GET">
<div class="input-group">
<label for="username">Username</label>
<input type="text" id="username" name="username" required>
</div>
<div class="input-group">
<label for="email">Email</label>
<input type="email" id="email" name="email" required>
</div>
<div class="input-group">
<label for="password">Password</label>
<input type="password" id="password" name="password" required>
</div>
<button id="signin-btn" onclick="()">Register</button>
</form>
<div class="links">
<a href="login.html">Already have an account? Login here</a>
<a href="forgotpwd.html">Forgot Password?</a>
</div>
<button id="signin-btn" onclick="()">Register</button>
</form>
<div class="links">
<a href="login.html">Already have an account? Login here</a>
<a href="forgotpwd.html">Forgot Password?</a>
</div>
</div>
</div>
Expand Down

0 comments on commit 281b564

Please sign in to comment.