-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
91 lines (77 loc) · 2.68 KB
/
index.html
File metadata and controls
91 lines (77 loc) · 2.68 KB
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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
<!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>LMS-PIS</title>
<link rel="icon" type="image/svg+xml" href="code/images/logo_pis.png">
<link rel="stylesheet" href="code/css/login.css" />
<link href="https://use.fontawesome.com/releases/v5.0.6/css/all.css" rel="stylesheet" />
<script src="https://unpkg.com/sweetalert/dist/sweetalert.min.js"></script>
<link href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css" rel="stylesheet" />
<script defer src="/__/firebase/init.js?useEmulator=true"></script>
<style>
.hide {
display: none;
}
.main-1 {
width: 19vw;
display: flex;
justify-content: center;
}
</style>
</head>
<body onload="preloader()">
<!-- preloader -->
<div id="loading">
<img src="images/Spin-1s-200px.gif" />
</div>
<script>
var preloaderr = document.getElementById('loading');
function preloader() {
preloaderr.style.display = 'none';
}
</script>
<div class="main-back">
</div>
<div class="nav">
<img src="code/images/logo_pis.png" alt="logo" id="logo"/>
<div class="text">
<h1 id="header">PRANAVANANDA INTERNATIONAL SCHOOL</h1>
<h3 id="text1">(An Educational Unit of Bharat Sevasharam Sangha)</h3>
<h2 id="text2">School with a difference</h2>
</div>
<img src="code/images/guruji.jpg" alt="guru" id="guru"/>
</div>
<div id="main" class="main-container">
<div class="container2">
<div class="box">
<h2>Library Login <i class="fa fa-sign-in" aria-hidden="true"></i> </h2>
<form>
<div >
<div class="input-box">
<input id="user-id" type="text" name="" required="" />
<label>User ID</label>
</div>
<div class="input-box">
<input id="user-pass" type="password" name="" required="" />
<label>Password</label>
</div>
<button class="btn btn-dark" id="submit">Submit <i class="fa fa-arrow-right" aria-hidden="true"></i>
</button>
<div class="main-1"><i class="loading-icon fa fa-spinner fa-spin hide"
style="color: aliceblue; size: 50px;"></i>
</div>
</div>
</form>
</div>
</div>
</div>
<div id="logged-in"></div>
</div>
</body>
<script src="code/js/login.js" type="module"></script>
<script src="https://code.jquery.com/jquery-3.4.1.slim.min.js"
integrity="sha384-J6qa4849blE2+poT4WnyKhv5vZF5SrPo0iEjwBvKU7imGFAV0wwj1yYfoRSJoZ+n" crossorigin="anonymous"></script>
</html>