-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathjoin.html
More file actions
executable file
·91 lines (83 loc) · 2.79 KB
/
join.html
File metadata and controls
executable file
·91 lines (83 loc) · 2.79 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Code for MKE</title>
<link rel="stylesheet" href="style.css">
<link rel="stylesheet" href="join.css">
</head>
<body class="noMargin">
<div class="inner">
<nav id="topNav">
<ul>
<li><a href="events.html" >Events</a></li>
<li><a href="join.html">Join</a></li>
<li><a href="about_us.html">About us</a></li>
<li><a href="index.html">Home</a></li>
</ul>
</nav>
<div class="containerjoin">
<form method="post" action="addparticipant.php">
<fieldset>
<legend>Personal Information</legend>
<label>First Name</label><br>
<input type="text" name="fname" placeholder="Your name.." required><br>
<label>Last Name</label><br>
<input type="text" name="lname" placeholder="Your last name.." required><br>
<label>Email</label><br>
<input type="email" name="email" placeholder="Email.." required><br>
<label>Phone Number</label><br>
<input type="text" name="phoneNum" placeholder="(555)-123-4567">
</fieldset>
<fieldset>
<legend>Programming languages</legend>
<input type="checkbox" name="javaScript"/>: JavaScript
<br>
<input type="checkbox" name="python"/>: Python
<br>
<input type="checkbox" name="java"/>: Java
<br>
<input type="checkbox" name="c"/>: C
<br>
<input type="checkbox" name="c#"/>: C#
<br>
<input type="checkbox" name="c++"/>: C++
<br>
<input type="checkbox" name="php"/>: PHP
<br>
<input type="checkbox" name="ruby"/>: Ruby
<br>
<input type="checkbox" name="swift"/>: Swift
<br>
<input type="checkbox" name="sql"/>: SQL
<br>
<input type="checkbox" name="objectiveC"/>: Objective – C
<br>
<input type="checkbox" name="html"/>: HTML
<br>
<input type="checkbox" name="css"/>: CSS
</fieldset>
<fieldset>
<legend>Graphic Design Skills</legend>
<input type="checkbox" name="photoEditing"/>: Photo Editing
<br>
<input type="checkbox" name="indesign"/>: InDesign
<br>
<input type="checkbox" name="dreamweaver"/>: Dreamweaver
<br>
<input type="checkbox" name="photoshop"/>: Adobe Photoshop
<br>
<input type="checkbox" name="illustrator"/>: Adobe Illustrator
<br>
<input type="checkbox" name="xd"/>: Adobe XD
</fieldset>
<fieldset>
<legend>Tell us about yourself</legend>
<textarea name="subject" placeholder="Write something.." style="height:100px"></textarea><br>
</fieldset>
<input type="submit" value="Submit">
</form>
</div>
</div>
</body>
</html>