-
Notifications
You must be signed in to change notification settings - Fork 1
/
login.html
102 lines (92 loc) · 2.75 KB
/
login.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
<!DOCTYPE html>
<html lang="zxx">
<head>
<title>365 Gallery</title>
<meta charset="UTF-8">
<meta name="description" content="Boto Photo Studio HTML Template">
<meta name="keywords" content="photo, html">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!-- Stylesheets -->
<link rel="stylesheet" href="css/bootstrap.min.css"/>
<link rel="stylesheet" href="css/font-awesome.min.css"/>
<link rel="stylesheet" href="css/slicknav.min.css"/>
<!-- Main Stylesheets -->
<link rel="stylesheet" href="css/style.css"/>
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script>
<script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
<![endif]-->
</head>
<body>
<!-- Page Preloder -->
<div id="preloder">
<div class="loader"></div>
</div>
<!-- Header Section -->
<header class="header">
<div class="container-fluid">
<div class="row">
<div class="col-sm-4 col-md-3 order-2 order-sm-1">
</div>
<div class="col-sm-4 col-md-6 order-1 order-md-2 text-center">
<a href="./index.html" class="site-logo" >
<img src="img/logo.png" alt="">
</a>
</div>
<div class="col-sm-4 col-md-3 order-3 order-sm-3">
</div>
</div>
<nav class="main__menu">
<ul class="nav__menu">
</ul>
</nav>
</div>
</header>
<!-- Header Section end -->
<!-- Contact Page -->
<section class="contact__page">
<div class="contact__warp">
<div class="login__form">
<h2>Log-in</h2>
<div class="login_id">
<h4>ID</h4>
<input type="id" name="" id="" placeholder="ID">
</div>
<div class="login_pw">
<h4>Password</h4>
<input type="password" name="" id="" placeholder="Password">
</div>
<div class="submit">
<input type="button" id='submitBtn' value="submit">
</div>
</div>
</div>
</section>
<!-- Contact Page end -->
<!-- Search Begin -->
<div class="search-model">
<div class="h-100 d-flex align-items-center justify-content-center">
<div class="search-close-switch">+</div>
<form class="search-model-form">
<input type="text" id="search-input" placeholder="Search here.....">
</form>
</div>
</div>
<!-- Search End -->
<!--====== Javascripts & Jquery ======-->
<script src="js/vendor/jquery-3.2.1.min.js"></script>
<script src="js/jquery.slicknav.min.js"></script>
<script src="js/slick.min.js"></script>
<script src="js/main.js"></script>
<script>
function setChildValue(index) {
window.location.href = "exhibition_pic.html?index=" + index;
}
</script>
<script>
$('#submitBtn').on('click', function(event){
window.location.href = "index.html";
})
</script>
</body>
</html>