Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fixed the BUG of Register Page #1122

Merged
merged 1 commit into from
Nov 10, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 15 additions & 1 deletion register.html
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,18 @@
.form-field {
margin-bottom: 15px;
}

.back button {
width: 50%;
font-size: 14px;
font-weight: 500;
color: #fff;
background-color: orange;
border: none;
border-radius: 18px;
cursor: pointer;
transition: background-color 0.3s ease;
}

.form-field label {
display: block;
Expand Down Expand Up @@ -153,7 +165,9 @@ <h2>Register</h2>
</div>
<div class="form-field">
<button onclick="registerUser()">Register</button>
<a href="./index.html">Back to Home</a>
</div>
<div class="back">
<button><a href="./index.html">&#8592; Back to Home</a></button>
</div>
<div id="message" class="message"></div>
</div>
Expand Down
Loading