-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
44 lines (41 loc) · 1.45 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
42
43
44
<!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>Document</title>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/materialize/1.0.0/css/materialize.min.css" integrity="sha512-UJfAaOlIRtdR+0P6C3KUoTDAxVTuy3lnSXLyLKlHYJlcSU8Juge/mjeaxDNMlw9LgeIotgz5FP8eUQPhX1q10A==" crossorigin="anonymous" referrerpolicy="no-referrer" />
<style>
.row{
margin-top: 25vh;
}
h1{
margin-top: 0px;
}
</style>
</head>
<body>
<div class="row">
<div class="col s8 offset-s2">
<div id="message-show" class="card-panel hide">
<h1></h1>
<a href="./index.html">Create your own secret message.</a>
</div>
<div id = 'form-message' class="card-panel">
<form action="">
<label for="">Enter a Secret Message.</label>
<input type="text" id='message-input'>
<button class="btn">Create</button>
</form>
</div>
<div id='label-message' class="card-panel hide">
<div>
<input type="text" id="link-input">
</div>
</div>
</div>
</div>
<script src="index.js"></script>
</body>
</html>