-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathkayit.php
More file actions
54 lines (44 loc) · 2.04 KB
/
kayit.php
File metadata and controls
54 lines (44 loc) · 2.04 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
<?php
require 'baglan.php'
?>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<link rel="stylesheet" type="text/css" href="style2.css">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Nunito:ital,wght@0,300;1,300&display=swap" rel="stylesheet">
</head>
<body>
<div class="login">
<div class="login-screen">
<div class="app-title">
<h1>Kayıt Ol</h1>
</div>
<form action="islem.php" method="post">
<div class="login-form">
<div class="control-group">
<input type="text" name="username" class="login-field" placeholder="Kullanıcı Adı"
id="login-name">
<label class="login-field-icon" for="login-name"></label>
</div>
<div class="control-group">
<input type="password" name="password" class="login-field" id="login-pass" placeholder="Şifre">
<label class="login-field-icon" for="login-pass"></label>
</div>
<div class="control-group">
<input type="password" name="password_again" class="login-field" id="login-pass" placeholder="Tekrar Şifre">
<label class="login-field-icon" for="login-pass"></label>
</div>
<button href="kayit.php" name="kayit" class="btn btn-primary btn-large btn-block">Kayıt Ol</button>
</div>
</form>
<a href="giris.php"><button class="btn btn-primary btn-large btn-block">Giriş Yap</button></a>
<a href="index.php"><button class="btn btn-primary btn-large btn-block">Anasayfa</button></a>
</div>
</div>
</body>
</html>