-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathteach.php
More file actions
64 lines (54 loc) · 2.17 KB
/
teach.php
File metadata and controls
64 lines (54 loc) · 2.17 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Teacher Hiring Form</title>
<link rel="stylesheet" href="styles.css">
<link rel="shortcut icon" href="./image/logo.jpeg" type="image/x-icon">
</head>
<body>
<!-- <header>
<img src="./image/logo.jpeg" alt="atech" class="logo-image">
<h1 class="logo"> ATechnology</h1>
</header> -->
<?php
include "nav.php";
?>
<main style="position:relative; top:80px;">
<section class="form-section" >
<h2>Teacher Hiring</h2>
<form method="POST" action="submit_teacher.php">
<div class="form-group">
<label for="first-name">Name *</label>
<div class="name-fields">
<input type="text" id="first-name" name="first-name" placeholder="First Name" required>
<input type="text" id="last-name" name="last-name" placeholder="Last Name" required>
</div>
</div>
<div class="form-group">
<label for="email">Email *</label>
<input type="email" id="email" name="email" placeholder="example@example.com" required>
</div>
<div class="form-group">
<label for="phone-number">Phone Number *</label>
<input type="tel" id="phone-number" name="phone-number" placeholder="(000) 000-0000" required>
</div>
<div class="form-group">
<label for="qualification">Qualification *</label>
<input type="text" id="qualification" name="qualification" placeholder="e.g., B.Sc, M.Sc, BCA, MCA" required>
</div>
<div class="form-group">
<label for="experience">Experience *</label>
<input type="text" id="experience" name="experience" placeholder="e.g., 2years, 3 years, 5 years" required>
</div>
<div class="form-group">
<label for="subject">Subject *</label>
<input type="text" id="subject" name="subject" placeholder="e.g., Mathematics, Physics, Chemistry" required>
</div>
<button type="submit" class="submit-button">Submit</button>
</form>
</section>
</main>
</body>
</html>