-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
50 lines (37 loc) · 985 Bytes
/
index.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Who is presenting?</title>
<script src="public/jquery-3.2.1.min.js"></script>
<link rel="stylesheet" href="styles.css" type="text/css">
</head>
<body>
<header>
<h1>Who is presenting?</h1>
</header>
<div class = "uppertext">
<h2>Submit a conference speaker or see a list of presenters<h2>
<form action="/presenters" method="POST">
<input type="text" placeholder="name" name="name">
<input type="text" placeholder="conference" name="conference">
<input type="text" placeholder="location" name="location">
<input type="text" placeholder="date" name="date">
<button type="submit" id = 'submit'>Submit</button>
</form>
<div class="dropdown">
<button class="dropbtn"></button>
<div class="dropdown-content">
</div>
</div>
</div>
<div class = "lowertext">
<p> hola, que tal?</p>
</div>
<script>
$("a").click(function(){
$(".lowertext").show();
})
</script>
</body>
</html>