-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgiris.php
More file actions
72 lines (61 loc) · 2.46 KB
/
giris.php
File metadata and controls
72 lines (61 loc) · 2.46 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
<?php include_once "database.php" ?>
<!DOCTYPE html>
<html lang="en">
<head>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" type="text/css" href="css/bootstrap.css">
<!-- Website CSS style -->
<link rel="stylesheet" type="text/css" href="css/main.css">
<!-- Website Font style -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.6.1/css/font-awesome.min.css">
<!-- Google Fonts -->
<link href='https://fonts.googleapis.com/css?family=Passion+One' rel='stylesheet' type='text/css'>
<link href='https://fonts.googleapis.com/css?family=Oxygen' rel='stylesheet' type='text/css'>
<title>Kullanıcı Girisi</title>
</head>
<body>
<div class="container">
<div class="row main">
<div class="panel-heading">
<div class="panel-title text-center">
<h1 class="title">Giris Ekranı</h1>
<hr />
</div>
</div>
<div class="main-login main-center">
<form class="form-horizontal" method="post" action="login.php">
<div class="form-group">
<label for="username" class="cols-sm-2 control-label">Kullanıcı Adı</label>
<div class="cols-sm-10">
<div class="input-group">
<span class="input-group-addon"><i class="fa fa-users fa" aria-hidden="true"></i></span>
<input type="text" class="form-control" name="username" id="username" placeholder="Enter your Username"/>
</div>
</div>
</div>
<div class="form-group">
<label for="password" class="cols-sm-2 control-label">Parola</label>
<div class="cols-sm-10">
<div class="input-group">
<span class="input-group-addon"><i class="fa fa-lock fa-lg" aria-hidden="true"></i></span>
<input type="password" class="form-control" name="password" id="password" placeholder="Enter your Password"/>
</div>
</div>
</div>
<div class="form-group ">
<input type="submit" class="btn btn-primary btn-lg btn-block login-button" value="Giris Yap">
</div>
<div class="login-register">
<a href="kayitol.php">Kayıt Ol</a>
</div>
<br>
<div class="login-register">
<a href="index.php">Anasayfa</a>
</div>
</form>
</div>
</div>
</div>
<script type="text/javascript" src="assets/js/bootstrap.js"></script>
</body>
</html>