-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathform1.html
86 lines (83 loc) · 3.45 KB
/
form1.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" type="text/css" media="screen" href="form.css" />
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css" integrity="sha384-ggOyR0iXCbMQv3Xipma34MD+dH/1fQ784/j6cY/iJTQUOhcWr7x9JvoRxT2MZw1T" crossorigin="anonymous">
<title>
IIITU Alumni Website
</title>
</head>
<body>
<h1 class="heading">Registration Portal</h1>
<div class="container">
<!-- <form>
<label>First Name</label>
<input type="text" placeholder="First Name" name="first-name" required>
<label>Last Name</label>
<input type="text" placeholder="Last Name" name="last-name" required>
<select name="branch" required>
<option value="IT">IT</option>
<option value="CSE">CSE</option>
<option value="ECE">ECE</option>
</select>
<select>
</select>
<h3>Work Experience</h3>
<label>Name of Organisation:</label>
<input type="text" placeholder="Name Of The Company" name="work-experience-name"></input>
<label>Work Duration</label>
<input type="month" name="work-experience-duration" value="2018-01"></input>To<input type="month" name="work-experience-duration" value="2018-01"></input>
<button class="btn add" type="button" onclick="add()">+</button>
<label>Github Link:</label>
<input type="text" placeholder="Github Link" name="github-link"></input>
<label>LinkedIn Link:</label>
<input type="text" placeholder="Linkedin Link" name="linkedin-link"></input>
</form> -->
<form>
<div class="form-group row">
<label for="inputFirstName" class="col-sm-2 col-form-label font-weight-bold">First Name</label>
<div class="col-sm-10">
<input type="first-name" class="form-control" id="first-name" placeholder="First Name">
</div>
</div>
<div class="form-group row">
<label for="inputLastName" class="col-sm-2 col-form-label font-weight-bold">Last Name</label>
<div class="col-sm-10">
<input type="last-name" class="form-control" id="last-name" placeholder="Last Name">
</div>
</div>
<div class="form-group row">
<label class="mr-sm-2 sr-only font-weight-bold" for="inlineFormCustomSelect">Branch</label>
<select class="custom-select mr-sm-2" id="inlineFormCustomSelect">
<option selected>IT</option>
<option value="1">IT</option>
<option value="2">CSE</option>
<option value="3">ECE</option>
</select>
</div>
<div class="form-group row">
<label for="inputOrgNamee" class="col-sm-2 col-form-label font-weight-bold">Name of Organisation</label>
<div class="col-sm-10">
<input type="organisation-name" class="form-control" id="inputorgname" placeholder="Name of Organisation">
</div>
</div>
<div class="form-group row">
<label for="inputFirstName" class="col-sm-2 col-form-label font-weight-bold">Github Link</label>
<div class="col-sm-10">
<input type="github-link" class="form-control" id="inputlink" placeholder="Github Link">
</div>
</div>
<div class="form-group row">
<label for="inputFirstName" class="col-sm-2 col-form-label font-weight-bold">LInkedIn Link</label>
<div class="col-sm-10">
<input type="linkedin-link" class="form-control" id="inputlink" placeholder="LInkedIn Link">
</div>
</div>
<div class="buttons">
<input class="btn btn-outline-primary" type="submit" value="Submit">
<input class="btn btn-outline-danger" type="reset" value="Reset">
</div>
</form>
</div>
</body>
</html>