-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
66 lines (51 loc) · 2 KB
/
index.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
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" href="style.css">
<meta name="viewport" content="width=device-width, initial-scale=1">
</head>
<script src="../js/index.js"></script>
<body>
<br>
<h1><b>Job Application Form</b></h1>
<form name="myForm" action="" onsubmit="return validateForm()" >
<div class="form-group">
<label for="InputName">First Name</label>
<input type="text" name="firstname" class="form-control" id="InputName" required="required">
<br><br>
<label for="InputName">Middle Name</label>
<input type="text" name="middletname" class="form-control" id="InputName" required="required">
<br><br>
<label for="InputName">Last Name</label>
<input type="text" name="email" class="form-control" id="InputEmail1" aria-describedby="emailHelp" >
<br>
<br>
<label for="InputEmail1" required="required">Email address</label>
<input type="email" name="email" class="form-control" id="InputEmail1" aria-describedby="emailHelp" >
<br>
<br>
<label for="InputAddress">Address</label>
<input type="text" name="address" class="form-control" id="InputAddress" >
<br>
<br>
<label for="InputCity">City</label>
<input type="text" name="city" class="form-control" id="InputCity" >
<br>
<br>
<label for="InputZip">Zip</label>
<input type="text" name="zip" class="form-control" id="InputZip" >
<br>
<br>
<label for="InputMobileNumber" class="col-2 col-form-label">Mobile-Number</label>
<input class="form-control" name="tel" type="tel" id="InputMobileNumber">
<br>
<br>
<label class="mr-4">Upload your CV:</label>
<input type="file" name="file">
<br>
<br>
<button type="submit" class="btn btn-primary">Submit</button>
</form>
</div>
</body>
</html>