-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathspeaker.html
120 lines (109 loc) · 4.46 KB
/
speaker.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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=0.3">
<link rel="stylesheet" href="styles.css">
<title> Speaker Register for KAC233 </title>
</head>
<body class="speaker">
<header class="header">
<a href="" class="logo">KAC233</a>
<nav class="navbar">
<a href="index.html">Home</a>
<a href="about.html">About</a>
<a href="registration.html">Registration</a>
<a href="contact.html">Contact</a>
</nav>
</header>
<main>
<table class="form-table">
<form id="register-form" action="https://info@ciu.edu.tr" method="post">
<tr>
<th> Name: </th>
<td>
<input type="text" name="fullname" maxlength="27" class="user-details" autocomplete="name" required >
</td>
</tr>
<tr>
<th> E-mail: </th>
<td>
<input type="email" name="email" class="user-details" autocomplete="email"
pattern="[a-z0-9._%+\-]+@[a-z0-9.\-]+\.[a-z]{2,}$" required>
</td>
</tr>
<tr>
<th> Gender: </th>
<td>
<select id="gender">
<option value="select">Select Option</option>
<option value="male">Male</option>
<option value="female">Female</option>
<option value="other">Other</option>
</select>
</td>
</tr>
<tr>
<th colspan="2" class="note">
Please schedule your session(s) and access package(s).
</th>
</tr>
<tr>
<th> Date: </th>
<td>
<!--
Earliest date for arrival booking 12th, latest date 15th
Earliest date for exit booking 15th, latest date 18th
-->
From <input type="date" name="from" id="from" min="2024-01-12" max="2024-01-15" required >
To <input type="date" name="to" id="to" min="2024-01-15" max="2024-01-18" required >
</td>
</tr>
<tr>
<th> Design: </th>
<td>
<input type="radio" name="des" class="rad" value=75><em>Limited</em> €75
<input type="radio" name="des" class="rad" value=375><em>All</em> €375
</td>
</tr>
<tr>
<th> Prototyping: </th>
<td>
<input type="radio" name="proto" class="rad" value=60><em>Limited</em> €60
<input type="radio" name="proto" class="rad" value=300><em>All</em> €300
</td>
</tr>
<tr>
<th> Programming: </th>
<td>
<input type="radio" name="prog" class="rad" value=85><em>Limited</em> €85
<input type="radio" name="prog" class="rad" value=400><em>All</em> €400
</td>
</tr>
<tr>
<th> <button class="cost" onclick="return getCost()">Total Cost</button> </th>
<td> <p id="display"></p> </td>
</tr>
<tr>
<td colspan="2" class="td-span">
<input type="submit" class="sub-reg" value="Register" >
</td>
</tr>
</form>
</table>
<div class="tokyo">
<h3>🏯TOKYO awaits!🎉😎</h3>
<img src="img/tokyo.jpg" alt="Tokyo awaits photo" class="tokyo-photo">
</div>
</main>
<footer>
<p>
Copyrights ©<script>
document.write(new Date().getFullYear());
</script>, Project 233. All rights reserved. <br>
KUDZAI ABUBAKAR COLLINS
</p>
</footer>
<script type="text/javascript" src="script.js"></script>
</body>
</html>