-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathapply.html
More file actions
173 lines (151 loc) · 8.77 KB
/
apply.html
File metadata and controls
173 lines (151 loc) · 8.77 KB
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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
<!DOCTYPE html>
<!--Home page with details of the company (index.html)-->
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="description" content="Assesment Unit Outline" />
<meta name="keywords" content="HTML, Form, tags, CSS, JavaScript" />
<meta name="author" content="Jama Bushra/101797206" />
<title>Assesment - outline</title>
<link rel="stylesheet" type="text/css" href="style/style.css">
</head>
<body>
<header>
<a href="index.html" class="header-brand">CloverfieldTech</a>
<nav>
<ul>
<li><a href="jobs.html">Jobs</a></li>
<li><a href="apply.html">Apply</a></li>
<li><a href="about.html">About</a></li>
<li><a href="enhancements.html">Enhancements</a></li>
</ul>
<a href="cases.html" class="header-cases">Cases</a>
</nav>
</header>
<main>
<section class="apply-banner">
<div class="vertical-centre">
<h2>Where Can We<br>Take You?</h2>
<h1>skies no limit, apply now we only work on hard impactful problems</h1>
</div>
</section>
<section class="html-enhancements">
<h2>Our Applications</h2>
<div id="formelements">
<form method="post" action="http://mercury.swin.edu.au/it000000/formtest.php">
<fieldset>
<legend>Applicant Details</legend>
<p><label for="jobreference">Job ID</label>
<input type="text" name="studentid" id="jobreference" maxlength="5" size="10"
required="required" pattern="[a-zA-Z0-9]{0,5}" />
</p>
<p><label for="givenname">Given Name</label>
<input type="text" name="givenname" id="givenname" maxlength="20" size="10"
required="required" pattern="[a-zA-Z]+" />
<label for="lastname">Last Name</label>
<input type="text" name="lastname" id="lastname" maxlength="20" size="10"
required="required" pattern="[a-zA-Z]+" /> <br>
<label for="streetaddress">Street Address</label>
<input type="text" name="streetaddress" id="streetaddress" maxlength="40" size="10"
required="required" pattern="[a-zA-Z]+" /> <br>
<label for="state">Choose State</label>
<select name="state" id="state" required="required">
<option value="">State</option>
<option value="VIC">VIC</option>
<option value="NSW">NSW</option>
<option value="QLD">QLD</option>
<option value="NT">NT</option>
<option value="WA">WA</option>
<option value="SA">SA</option>
<option value="TA">TA</option>
<option value="ACT">ACT</option>
</select>
<label for="postcode">Postcode</label>
<input type="text" name="postcode" id="postcode" maxlength="4" size="10" required="required"
pattern="[a-zA-Z0-9]{4,4}" /> <br>
<label for="email">Email</label>
<input type="text" name="email" id="email" maxlength="40" size="20" required="required" />
<br>
<label for="phone">Phone</label>
<input type="text" name="phone" id="phone" maxlength="10" size="10" required="required"
pattern="[0-9]{8,12}" />
</p>
<p><label for="dob">Date of Birth</label>
<input type="text" name="dob" id="dob" placeholder="dd-mm-yyyy" maxlength="10" size="10"
required="required" />
</p>
<fieldset>
<legend>Sex</legend>
<p><label for="male">Male</label>
<input type="radio" id="male" name="sex" value="male" />
</p>
<p><label for="female">Female</label>
<input type="radio" id="female" name="sex" value="female" />
</p>
</fieldset>
<fieldset>
<legend>Years of Prior Experience</legend>
<p><label for="less2years">Less than 2 years</label>
<input type="radio" id="less2years" name="unit" value="less2years"
required="required" />
<label for="2to5years">2 to 5 years</label>
<input type="radio" id="2to5years" name="unit" value="2to5years" />
<label for="morethan5years">more than 5 years</label>
<input type="radio" id="morethan5years" name="unit" value="morethan5years" />
</p>
<p><label for="tutor">Role You're Applying For & Role</label>
<select name="tutor" id="tutor" required="required">
<option value="">Please Select</option>
<option value="appdev">Applications Developer Mobile</option>
<option value="fullstackdev">Full-Stack Developer</option>
<option value="securityanalyst">Security Analyst</option>
</select>
</p>
</fieldset>
<fieldset>
<legend>Skillsets & Other Skills</legend>
<p><label for="htmlknow">HTML</label>
<input type="checkbox" id="htmlknow" name="category[]" value="html" checked="checked" />
<label for="cssknow">CSS</label>
<input type="checkbox" id="cssknow" name="category[]" value="css" />
<label for="javascriptknow">JavaScript</label>
<input type="checkbox" id="javascriptknow" name="category[]" value="javascript" />
<label for="phpknow">PHP</label>
<input type="checkbox" id="phpknow" name="category[]" value="php" />
<label for="mysqlknow">MySQL</label>
<input type="checkbox" id="mysqlknow" name="category[]" value="mysql" />
<label for="cplusplusknow">C++</label>
<input type="checkbox" id="cplusplusknow" name="category[]" value="c++" />
</p>
<p><label for="otherskills">Enter Any Other Skills</label>
<textarea id="otherskills" name="otherskills" rows="4" cols="40"
placeholder="Type other skills here..."></textarea>
</p>
</fieldset>
<fieldset>
<legend>When Can You Begin?</legend>
<p><label for="datefield">Enter Earliest Start Date</label>
<input type="text" name="datefield" id="datefield" size="10" required="required"
placeholder="dd/mm/yyyy" pattern="\d{1,2}\/\d{1,2}\/\d{4}" />
</p>
</fieldset>
<input type="submit" value="Book" />
<input type="reset" value="Reset Form" />
</fieldset>
</form>
</div>
</section>
</main>
<footer>
<p class="copyright"> © CloverfieldTech Established in 1995</p>
<div class="footer-sm">
<a href="https://twitter.com/jhbissle">
<img class="icontwitter" src="image/twitter-logo-silhouette.png" alt="twitter icon">
</a>
<a href="https://www.linkedin.com/in/jama-bushra-12677b143">
<img class="iconlinkedin" src="image/linkedin-letters.png" alt="linkedin icon">
</a>
</div>
</footer>
</body>
</html>