-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
75 lines (59 loc) · 2.2 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
<!DOCTYPE html>
<!--
To change this license header, choose License Headers in Project Properties.
To change this template file, choose Tools | Templates
and open the template in the editor.
-->
<html>
<head>
<style>
body {background-color:buttonface}
h2 {color: purple}
</style>
<title>Login Page</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!-- CSS -->
<link rel="stylesheet" href="resources/css/bootstrap.css"/>
<link rel="stylesheet" href="resources/css/w2ui-1.4.2.css"/>
<link rel="stylesheet" href="resources/css/font-awesome.css"/>
<!-- JS -->
<script src="resources/js/jquery-2.1.4.min.js"></script>
<script src="resources/js/bootstrap.js"></script>
<script src="resources/js/w2ui-1.4.2.js"></script>
</head>
<body>
<center>
<figure>
<img width="800" height="192"
src="http://www.sasad.org.tr/images/YALTES2.jpg"
alt="YALTES" />
</figure>
</center>
<!-- <form>
<center> <h2>YALTES KÜTÜPHANESİNE GİRİŞ</h2>
<input type="text" placeholder="Admin"/> <br/>
<input type="password" placeholder="password" /> <br/>
<input type="button" value="login"/>
<a href="AdminPanel.html">Admin Panel</a></center>
</form>-->
<center> <a href="AdminPanel.html">Admin Panel</a></center>
<div id="myForm" style="padding-right: 50px;padding-top:30px;padding-left:50px;position: absolute; top: 150px; left: 650px; bottom: 100px; right: 15px; margin: 6em; height: 200px;width: 500px"></div>
<script>
$(function () {
$('#myForm').w2form({
name : 'myForm',
fields : [
{ name: 'Admin', type: 'text', required: true },
{ name: 'Password', type: 'password', required: true },
],
actions: {
login: function () {
this.clear()
},
}
});
});
</script>
</body>
</html>