-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathformreg.html
101 lines (65 loc) · 3.36 KB
/
formreg.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
<!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">
<title>Form LaunTech</title>
<link rel="stylesheet" href="./styles.css">
<link rel="shortcut icon" type="image" href="../logor.png">
<!-- CSS only -->
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.2.2/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-Zenh87qX5JnK2Jl0vWa8Ck2rdkQ2Bzep5IDxbcnCeuOxjzrPF/et3URy9Bv1WTRi" crossorigin="anonymous">
</head>
<body>
<div class="hero">
<video loop autoplay muted plays-inline class="videoback">
<source src="logovideo.mp4" type="video/mp4">
</video>
<div class="contact-form">
<form action="proj.php" method="post" id="contact-form">
<h2>| <span>L</span>aunTech Registration</h2>
<div class="input-box">
<input type="text" required="true" name="name">
<span>Full Name</span>
</div>
<div class="input-box">
<input type="email" required="true" name="email">
<span>Email</span>
</div>
<div class="input-box">
<input required="true" name="phone">
<span>Phone Number</span>
</div>
<div class="input-box">
<textarea required="true" name="pre"></textarea>
<span>Previous Experience..</span>
</div>
<h3 style="color:rgb(0, 174, 255); margin-top:10px;">committee</h3>
<form name="">
<input type="radio" id="media" name="committee" value="media">
<label class="check" for="media">Media</label><br>
<input type="radio" id="humanresource" name="committee" value="Human Resource">
<label class="check" for="humanresource">Human Resource</label><br>
<input type="radio" id="fundraising" name="committee" value="Fund Raising">
<label class="check" for="fundraising">Fund Raising</label><br>
<input type="radio" id="socialmedia" name="committee" value="Social Media">
<label class="check" for="socialmedia">Social Media</label><br>
<input type="radio" id="publicrelations" name="committee" value="Public Relations">
<label class="check" for="publicrelations">Public Relations</label><br>
<input type="radio" id="logistics" name="committee" value="Logistics">
<label class="check" for="logistics">Logistics</label><br>
</form>
<div class="input-box">
<input type="submit" value="submit" name="submit">
</div>
</form>
</div>
</div>
</div>
</div>
<div class="footer">
<h1>| Your Limit Tends To Infinity</h1>
<p> Copyright@2022. All rights Reserved</p>
</div>
</body>
</html>