-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathupdateCandidate.html
More file actions
126 lines (91 loc) · 4.55 KB
/
updateCandidate.html
File metadata and controls
126 lines (91 loc) · 4.55 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<title>EXNET AWARDS</title>
<link rel="stylesheet" href="style/styles.css">
<link rel = "stylesheet" href = "style/Cregister.css">
<link rel = "stylesheet" href = "style/footer.css">
<script src="https://kit.fontawesome.com/c897df668c.js" crossorigin="anonymous"></script>
</head>
<body>
<div>
<div>
<h1><B><center>EXNET AWARDS</center></B></h1>
</div>
<div class="top_bar">
<img class="logo"src="./images/EX2.png" width="150px" height="80px" alt="Logo" >
<div class="nav">
<a href="homePage.html">HOME</a>
<a href="bestsong-index.html">VOTE</a>
<a href="catagories.html">CATEGORIES</a>
<a class="active" href="candidate.html">CANDIDATES</a>
<a href="winnersPage.html">WINNERS</a>
<a href="NEWS.html">NEWS</a>
<form class="search" action="#" align = "left" >
<input class="input" type="text" placeholder="Search" name="search">
<button class="button" type="submit"><i class=" fa fa-search"></i></button>
</form>
</div>
<BUTTON class="login" >Login</BUTTON>
<BUTTON class="reg" >Register</BUTTON>
<a href="userAccount.php"><img class="img2" src="./images/login.png" alt="avatar"></a>
</div>
<br><br>
<h1 class = "topic"> Candidate Information</h1>
<form method="POST" action="UpdateCandidate.php">
<label style = "margin-right: 30px;"><b> Candidate ID </b></label>
<input type = "text" placeholder = "candidate id" name="cid" required>
<br><br>
<label style = "margin-right: 73px;"> <b> Title: </b> </label>
<select name = "tit">
<option>select title</option>
<option>Mr</option>
<option>Mrs</option>
<option>Miss</option>
</select>
<br><br>
<label style = "margin-right: 30px;"><b> Full name </b></label>
<input type = "text" placeholder = "full name" name="fname" required>
<br><br>
<label style = "margin-right: 6px;"><b> Address </b></label>
<input type = "text" placeholder = "Address" name="addr" required>
<br><br>
<label style = "margin-right: 50px;"><b> Gender </b></label>
<input type = "radio" name = "gend" checked> Male
<input type = "radio" name = "gend" checked> Female
<br><br>
<label style = "margin-right: 15px;"><b> Age </b></label>
<input type = "text" name = "cage" required>
<br><br><br>
<input type = "checkbox" name ="confirm"><b> I confirm that information are correct </b>
<br><br>
<input type = "submit" name ="submit" id="">
</form>
<footer>
<div class="row">
<div class="col">
<a href="About Us.html" target="_blank">
<button id="btn1">About Us</button>
</a>
<p id="p1"> At EXNET AWARDS, we specialize in managing prestigious awards programs, recognizing excellence with integrity and expertise. <br> Join us in celebrating exceptional achievements in your industry. <br> <br>Copyright © 2023 EXNET. The EXNET is not responsible for the content of external sites.
</p>
</div>
<div class="col">
<a href="ContatcUs.html" target="_blank">
<button id="btn2"> Contact Us</button>
</a>
<div class="social-icons">
<i class="fa-brands fa-whatsapp"></i>
<i class="fa-brands fa-facebook-f"></i>
<i class="fa-solid fa-envelope"></i>
</div>
</div>
</div>
</footer>
</div>
</body>
</html>