-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
41 lines (40 loc) · 1.14 KB
/
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
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/materialize/1.0.0/css/materialize.min.css">
<style>
.row {
margin-top: 25vh;
}
h1 {
margin-top: 0;
}
</style>
</head>
<body>
<div class="row">
<div class="col s8 offset-s2">
<div id="message-show" class="card-panel hide">
<h1 id="message-header"></h1>
<div>
<a href="./index.html">Create your own secret message</a>
</div>
</div>
<div id="message-form" class="card-panel">
<form>
<label>Enter a Secret Message</label>
<input id="message-input" />
<button class="btn">Create</button>
</form>
</div>
<div id="link-form" class="card-panel hide">
<div>
Share this link with a friend
<input id ="link-input" />
</div>
</div>
</div>
</div>
<script src = "index.js"></script>
</body>
</html>