This repository was archived by the owner on Apr 4, 2026. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
122 lines (96 loc) · 4.41 KB
/
index.html
File metadata and controls
122 lines (96 loc) · 4.41 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
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
<!doctype html>
<html lang="tr">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Şifre Oluşturucu</title>
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0-alpha1/dist/css/bootstrap.min.css" rel="stylesheet">
<link href="https://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/5.2.0/css/bootstrap.min.css" rel="stylesheet">
<link href="https://cdn.datatables.net/1.13.2/css/dataTables.bootstrap5.min.css" rel="stylesheet">
<link rel="icon" type="image/x-icon" href="https://cdn-icons-png.flaticon.com/512/9767/9767142.png">
</head>
<body class="bg-light">
<div class="container">
<main>
<div class="py-5 text-center">
<img class="d-block mx-auto mb-4" src="https://cdn-icons-png.flaticon.com/512/9767/9767142.png" alt=""
width="80px">
<h2>Şifre Oluşturucu</h2>
</div>
<div class="row g-5">
<div class="col-md-5 col-lg-4 order-md-last">
<h4 class="d-flex justify-content-between align-items-center mb-3">
<span class="text-primary">Şifre Özellikleri</span>
</h4>
<ul class="list-group mb-3">
<li class="list-group-item d-flex justify-content-between lh-sm">
<div>
<h6 class="my-0">Şifre Uzunluğu</h6>
</div>
<input type="number" class="form-control" value="12" min="12" id="quantity" required>
</li>
<li class="list-group-item d-flex justify-content-between lh-sm">
<div>
<h6 class="my-0">Özel Karakter</h6>
<small class="text-muted">[!@&#)(%^*?]</small>
</div>
<input class="form-check-input" type="checkbox" value="" id="special">
</li>
<li class="list-group-item d-flex justify-content-between lh-sm">
<div>
<h6 class="my-0">Sayısal</h6>
<small class="text-muted">[0-9]</small>
</div>
<input class="form-check-input" type="checkbox" value="" checked id="numbers">
</li>
<li class="list-group-item d-flex justify-content-between lh-sm">
<div>
<h6 class="my-0">Büyük Harf</h6>
<small class="text-muted">[a-z]</small>
</div>
<input class="form-check-input" type="checkbox" value="" checked id="lowercase">
</li>
<li class="list-group-item d-flex justify-content-between lh-sm">
<div>
<h6 class="my-0">Küçük Harf</h6>
<small class="text-muted">[A-Z]</small>
</div>
<input class="form-check-input" type="checkbox" value="" checked id="uppercase">
</li>
</ul>
<button type="button" id="generate-button" class="btn btn-block btn-outline-primary w-100">Oluştur</button>
</div>
<div class="col-md-7 col-lg-8">
<h4 class="mb-3">Şifre</h4>
<div class="input-group mb-3">
<input type="text" class="form-control" id="password" ssplaceholder="Şifre">
<button class="btn btn-outline-secondary" type="button" id="copy" data-bs-toggle="tooltip"
data-bs-placement="left" data-bs-title="Tooltip on left">Kopyala</button>
</div>
<button type="button" id="hepsini-sil" class="btn btn-danger btn-block w-100">Hepsini sil</button>
<hr class="mb-3">
<table id="table" class="table table-striped table-hove table-bordered">
<thead>
<tr>
<th scope="col">#</th>
<th scope="col">Şifre</th>
<th scope="col">Oluşturma Tarihi</th>
</tr>
</thead>
<tbody>
</tbody>
</table>
</div>
</div>
</main>
</div>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0-alpha1/dist/js/bootstrap.bundle.min.js"></script>
<!-- jQuery Install -->
<script src="https://code.jquery.com/jquery-3.6.0.slim.min.js"></script>
<script src="https://cdn.datatables.net/1.13.2/js/jquery.dataTables.min.js"></script>
<script src="https://cdn.datatables.net/1.13.2/js/dataTables.bootstrap5.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/sweetalert2@11"></script>
<script src="js/sweetalert.js"></script>
<script src="js/scripts.js"></script>
</body>
</html>