mirror of
https://github.com/uiverse-io/galaxy.git
synced 2025-11-28 05:00:22 +08:00
66 lines
No EOL
1.4 KiB
HTML
66 lines
No EOL
1.4 KiB
HTML
<div class="login">
|
|
<div class="hader">
|
|
<span>Join us today!</span>
|
|
<p>Sing up now to become a member.</p>
|
|
</div>
|
|
<form action="#">
|
|
<input type="text" placeholder="Enter Name" required="" />
|
|
<input type="email" placeholder="Enter Emaill" required="" />
|
|
<input type="password" placeholder="Choose A Password" required="" />
|
|
<input type="password" placeholder="Re-Enter Password" required="" />
|
|
<input type="button" value="Signup" />
|
|
<span> Already a member? <a href="#">Login Here</a></span>
|
|
</form>
|
|
</div>
|
|
|
|
<style>
|
|
/* From Uiverse.io by FahadArnob52539 - Tags: form, html, css */
|
|
.login {
|
|
max-width: 280px;
|
|
background-color: #ffffff;
|
|
border-radius: 5px;
|
|
}
|
|
.hader {
|
|
text-align: center;
|
|
font-size: 22px;
|
|
font-weight: 700;
|
|
}
|
|
.hader p {
|
|
text-align: center;
|
|
font-size: 18px;
|
|
font-weight: 400;
|
|
color: #706b6b;
|
|
}
|
|
form {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 15px;
|
|
margin-top: 20px;
|
|
}
|
|
form input {
|
|
height: 40px;
|
|
outline: none;
|
|
border: 1px solid #cccccc;
|
|
padding: 10px;
|
|
font-size: 15px;
|
|
border-radius: 8px;
|
|
}
|
|
form input[type="button"] {
|
|
background-color: rgba(17, 17, 226, 0.562);
|
|
color: #ffffff;
|
|
font-size: 17px;
|
|
}
|
|
form span {
|
|
text-align: center;
|
|
font-size: 16px;
|
|
padding-top: 10px;
|
|
color: #706b6b;
|
|
}
|
|
form span a {
|
|
text-decoration: none;
|
|
color: rgba(36, 36, 207, 0.671);
|
|
font-weight: 500;
|
|
}
|
|
|
|
</style>
|
|
|