-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
55 lines (45 loc) · 1.84 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
45
46
47
48
49
50
51
52
53
54
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="theme-color" content="#ffc61a">
<!--Local css-->
<link rel="stylesheet" type="text/css" href="./css/style.css">
<link rel="stylesheet" type="text/css" href="./css/index.css">
<link rel="stylesheet" type="text/css" href="./css/responsive.css">
<!--font awesome icons-->
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.15.1/css/all.css" integrity="sha384-vp86vTRFVJgpjF9jiIGPEEqYqlDwgyBgEF109VFjmqGmIY/Y4HV4d3Gp2irVfcrp" crossorigin="anonymous">
<title>FireGram</title>
</head>
<body>
<!--login box-->
<div class="module-border-wrap">
<div class="module">
<div class="select">
<i class="fas fa-palette fa-gradient"></i>
<select class="select=input" id="sel-theme">
<option value="auto">Auto</option>
<option value="light">Light</option>
<option value="dark">Dark</option>
</select>
</div>
<h1>FireGram <i class="fas fa-fire fa-gradient"></i></h1>
<!--text input -->
<div id="input-box">
<label for="user-name"> User Name </label><br>
<input type="text" id="user-name"></input>
<br><br>
<label for="user-pass"> Password </label><br>
<input type="text" id="user-pass"></input>
<p id="msg"></p>
<i id="button2" class="fas fa-sign-in-alt fa-gradient" onclick="login();"></i>
<p>user-name = jasiah36 & Password = pass </p>
</div>
</div>
</div>
<p id="foot"><i class="fas fa-fire fa-gradient"></i> FireGram © 2020 </p>
<script src="./js/light.js" defer></script>
<script src="./js/main.js" defer></script>
</body>
</html>