-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
40 lines (40 loc) · 1.29 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
<!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: 30vh;
}
h1{
margin-top: 0px;
}
</style>
</head>
<body>
<div class="row">
<div class="col s8 offset-s2">
<div class="card-panel message">
<form>
<label>Enter a Secret Message</label>
<input id="message-input" />
<button class="btn">Create</button>
</form>
</div>
<div class="card-panel link hide">
<div >
share this link with friends
<input id="link-input" />
</div>
</div>
<div class="card-panel display-message hide">
<h1></h1>
<div>
<a href="./index.html">Create your own secret message</a>
</div>
</div>
</div>
</div>
<script src="index.js"></script>
</body>
</html>