Form Interface and Basic Validations #1
No reviewers
Labels
No labels
No milestone
No project
No assignees
2 participants
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference: jaanvi/Multi-Step-Form_Task2#1
Loading…
Reference in a new issue
No description provided.
Delete branch "develop"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
first committo Form Interface and Basic Validations@ -0,0 +11,4 @@
<div class="container">
<form id="form1" >
<h3>PERSONAL DETAILS</h3>
<input type="text" id="full name" placeholder="Full Name" required>
@ -0,0 +17,4 @@
<span class="error-message" id="email-error"></span>
<input type="tel" id="phone" placeholder="Phone No" required pattern="\d{10}">
<span class="error-message" id="phone-error"></span>
<input type="number" placeholder="Age" name="age" min="18" max="100">
validation is missing from age
@ -0,0 +21,4 @@
<span class="error-message" id="age-error"></span>
<label >Gender</label>
<label class="radio-inline">
@ -0,0 +16,4 @@
//Display Review Section
Next1.onclick=function(){
form1.style.left = "-450px";
The left property is replaced with transform, which is more appropriate for handling animations and transitions, and it avoids layout reflows.
example translateX(-450px)
done
@ -0,0 +127,4 @@
.dropdown select{
position:relative;
min-width: 18px;
min-width check does 18 px works for it or not?
if not it should be approx 180 px
done
Pull request closed