68 lines
3.1 KiB
HTML
68 lines
3.1 KiB
HTML
|
<!DOCTYPE html>
|
||
|
<html lang="en">
|
||
|
|
||
|
<head>
|
||
|
<meta charset="UTF-8">
|
||
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||
|
<title>Register</title>
|
||
|
<link rel="stylesheet" href="style.css">
|
||
|
</head>
|
||
|
|
||
|
<body>
|
||
|
<div class="form-Container">
|
||
|
<div class="step1" id="page1">
|
||
|
<form action="script.js" id="personal-datail">
|
||
|
<h2>Personal-Details</h2>
|
||
|
<fieldset>
|
||
|
<legend>Personal-Details</legend>
|
||
|
<input type="text" id="fullname" pattern="[A-Za-z\s]{3,}" minlength="3" placeholder="Enter your name" required>
|
||
|
<input type="email" placeholder="Enter your email" required>
|
||
|
<input type="tel" placeholder="Enter mobile number" id="phone-number" pattern="[0-9]{10}" maxlength="10" required>
|
||
|
<p id="gender-id">Select your gender:
|
||
|
<label for="male"><input type="radio" name="gender" value="male" id="male" required>Male</label>
|
||
|
<label for="female"><input type="radio" name="gender" value="female" id="female" required>Female</label>
|
||
|
<label for="other"><input type="radio" name="gender" value="other" id="other" required>Other</label>
|
||
|
</p>
|
||
|
<p>Enter your age:
|
||
|
<input type="tel" id="input-age" min="18" max="100" maxlength="2" required style="width: 80px;"></p>
|
||
|
</fieldset>
|
||
|
</form>
|
||
|
</div>
|
||
|
<div class="step2" id="page2">
|
||
|
<h2>Professional Details</h2>
|
||
|
<p>Education</p>
|
||
|
<select name="text" id="education-type" required>
|
||
|
<option value="Default">Default</option>
|
||
|
<option value="Master's">PG or Above</option>
|
||
|
<option value="UG">UG</option>
|
||
|
<option value="Higher Secondary"> 12 </option>
|
||
|
<option value="High School">10</option>
|
||
|
<option value="Below">Below 10</option>
|
||
|
</select>
|
||
|
|
||
|
<div class="skills">
|
||
|
<p>Select your skills</p>
|
||
|
<label for="html & css"> <input type="checkbox" id="html & css">HTML ans CSS</label>
|
||
|
<label for="js"> <input type="checkbox" id="js">Java Script</label>
|
||
|
<label for="React"> <input type="checkbox" id="React">React</label>
|
||
|
<label for="dbms"> <input type="checkbox" id="dbms">DBMS</label>
|
||
|
<label for="java"> <input type="checkbox" id="java">JAVA</label>
|
||
|
</div>
|
||
|
<p>Experience</p>
|
||
|
<input type="tel" min="0" max="50" maxlength="2" required placeholder="0-50 years">
|
||
|
<p>Current - Role</p>
|
||
|
<input type="text" placeholder="Current-Role" required>
|
||
|
</div>
|
||
|
<div class="Review-Submit">
|
||
|
|
||
|
</div>
|
||
|
<div id="btn-div">
|
||
|
<button id="prv-btn" >Previous</button>
|
||
|
<button id="nxt-btn">Next</button>
|
||
|
<button id="review-submit">Review-Submit</button>
|
||
|
</div>
|
||
|
</div>
|
||
|
<script src="script.js"></script>
|
||
|
</body>
|
||
|
|
||
|
</html>
|