mirror of
https://github.com/uiverse-io/galaxy.git
synced 2025-11-28 21:20:21 +08:00
56 lines
1.3 KiB
HTML
56 lines
1.3 KiB
HTML
<form class="form"> <div class="title">OTP</div> <div class="title">Verification Code</div> <p class="message">We have sent a verification code to your mobile number</p> <div class="inputs"> <input id="input1" type="text" maxlength="1"> <input id="input2" type="text" maxlength="1"> <input id="input3" type="text" maxlength="1"> <input id="input4" type="text" maxlength="1"> </div> <button class="action">verify me</button> </form>
|
|
<style>
|
|
/* From Uiverse.io by Yaya12085 - Tags: button, OTP, form, input */
|
|
.form {
|
|
display: flex;
|
|
align-items: center;
|
|
flex-direction: column;
|
|
justify-content: space-around;
|
|
width: 300px;
|
|
background-color: white;
|
|
border-radius: 12px;
|
|
padding: 20px;
|
|
}
|
|
|
|
.title {
|
|
font-size: 20px;
|
|
font-weight: bold;
|
|
color: black
|
|
}
|
|
|
|
.message {
|
|
color: #a3a3a3;
|
|
font-size: 14px;
|
|
margin-top: 4px;
|
|
text-align: center
|
|
}
|
|
|
|
.inputs {
|
|
margin-top: 10px
|
|
}
|
|
|
|
.inputs input {
|
|
width: 32px;
|
|
height: 32px;
|
|
text-align: center;
|
|
border: none;
|
|
border-bottom: 1.5px solid #d2d2d2;
|
|
margin: 0 10px;
|
|
}
|
|
|
|
.inputs input:focus {
|
|
border-bottom: 1.5px solid royalblue;
|
|
outline: none;
|
|
}
|
|
|
|
.action {
|
|
margin-top: 24px;
|
|
padding: 12px 16px;
|
|
border-radius: 8px;
|
|
border: none;
|
|
background-color: royalblue;
|
|
color: white;
|
|
cursor: pointer;
|
|
align-self: end;
|
|
}
|
|
</style>
|