-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
159 lines (130 loc) · 4.31 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
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
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
<html>
<head>
<title>The People Wallet</title>
<link href="/css/styles.css" rel="stylesheet">
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
<script type="text/javascript" src="/js/code.js"></script>
<script type="text/javascript" src="/js/md5.js"></script>
<link href="http://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.3.0/css/font-awesome.css" rel="stylesheet" type='text/css'>
<link href="http://maxcdn.bootstrapcdn.com/font-awesome/4.1.0/css/font-awesome.min.css" rel="stylesheet">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-giJF6kkoqNQ00vy+HMDP7azOuL0xtbfIcaT9wjKHr8RbDVddVHyTfAAsrekwKmP1" crossorigin="anonymous">
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js" integrity="sha384-ygbV9kiqUc6oa4msXn9868pTtWMgiQaeYH7/t7LECLbyPA2x65Kgf80OJFdroafW" crossorigin="anonymous"></script>
<link href="https://fonts.googleapis.com/css?family=Ubuntu" rel="stylesheet">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/font/bootstrap-icons.css">
</head>
<body>
<style>
input[type=text]
{
width:100%;
border: 2px solid silver;
border-radius: 4px;
margin: 8px 0;
outline:none;
padding: 8px;
box-sizing: border-box;
transition: .3s;
}
input[type=text]:focus{
border-color: #d0f0c0;
box-shadow: 0 0 10px 0 #d0f0c0;
}
input[type=password]
{
width:100%;
border: 2px solid silver;
border-radius: 4px;
margin: 8px 0;
outline:none;
padding: 8px;
box-sizing: border-box;
transition: .3s;
}
input[type=password]:focus{
border-color: #d0f0c0;
box-shadow: 0 0 10px 0 #d0f0c0;
}
.inputWithIcon input[text=text]{
padding-left:40px;
}
.inputWithIcon{
position: relative;
}
.inputWithIcon
{
top:10px;
}
.input-icons i {
position: absolute;
}
.input-icons {
width: 100%;
margin-bottom: 10px;
}
.icon {
padding: 25px;
color: grey;
min-width: 50px;
text-align: center;
}
.input-field {
width: 100%;
padding: 10px;
text-align: center;
}
</style>
<div class="background" style = "height:100%vh;width:100%vw">
<div class="container rounded">
<div class = "row w-100 h-100 d-flex justify-content-center align-items-center g-0">
<div class = "col-md-8 col-lg-5 p-4 border rounded shadow-lg bg-white" style= "opacity: 1">
<div class = "py-3"></div>
<div class = "row w-100 g-0">
<div class = "col-12 w-100 p-4 g-0">
<div class = "row justify-content-center">
<div class = "col-lg-8 d-flex align-items-center justify-content-center">
<img src="/images/logo5.png" class="img-fluid" alt="Responsive image">
</div>
</div>
</div>
</div>
<div class = "py-1"></div>
<div class = "row justify-content-center">
<div class = "col-8 p-0 g-0">
<div class="input-icons">
<i class="fa fa-user icon">
</i>
<input class="input-field"
type="text"
placeholder="Username" id= "userName">
</div>
</div>
</div>
<div class = "row justify-content-center" >
<div class = "col-8 p-0 g-0">
<div class="input-icons">
<i class="fa fa-lock icon">
</i>
<input class="input-field"
type="password"
placeholder="Password" id="password" >
</div>
</div>
</div>
<div class = "errorBar">
</div>
<div class = "row p-4">
<div class = "col-6">
<div class = "d-flex justify-content-start">
<i class="bi bi-person-plus" style = "font-size:50px;color:#4C1A7E;" onclick = "window.location.href = 'member.html'"></i>
</div>
</div>
<div class = "col-6">
<div class = "d-flex justify-content-end">
<i class="bi bi-arrow-right-circle" style = "font-size:50px;color:#4C1A7E;" onclick = "login()"></i>
</div>
</div>
</div>
<div class = "py-2"></div>
</div>
</div>