-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
81 lines (66 loc) · 2.55 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
76
77
78
79
80
81
<!DOCTYPE html>
<html lang="tr" dir="ltr">
<head>
<meta charset="utf-8">
<title>PASSGEN</title>
<link rel="stylesheet" href="main.css">
<link rel="stylesheet" href="modal.css">
<link rel="icon" href="logo-x.png" type="image/x-icon"/>
<script src="https://kit.fontawesome.com/a076d05399.js"></script>
</head>
<body>
<!-- Trigger/Open The Modal -->
<!-- The Modal -->
<div id="myModal" class="modal">
<!-- Modal content -->
<div class="modal-content">
<span class="close">×</span>
<h2>PASSGEN v0.0.1</h2>
<br>
<p class="notlar" ><i class="fas fa-check-square"></i> Arayüz yeniden geliştirildi.
<br>
<i class="fas fa-check-square"></i> Şifre Uzunluğu 20 karaktere sabitlendi.
<br>
<i class="fas fa-check-square"></i> Sayı, Harf, Sayı ve Harf, Karışık seçenekleri eklendi.
<br>
<i class="fas fa-check-square"></i> Mobil kullanıcılar için kolaylık olması açısından ekstra bir buton eklendi.
<br>
<b>v0.0.1</b><br>
<i class="fas fa-check-square"></i> Çeşitli arayüz güncelleştirmeleri.
<br>
<i class="fas fa-check-square"></i> Ufak hatalar giderildi.
</p>
</div>
</div>
<div class="container">
<img src="logo-x.png" class="logoresim" alt="Logo Resmi">
<div class="text">
PASSGEN v0.0.1</div>
<div class="input-data">
<div class="display">
<input type="text" id="kopyala">
<span class="far fa-copy" onclick="copy()"></span>
<span class="fas fa-copy" onclick="copy()"></span>
</div>
<button>ŞİFRE OLUŞTUR <i class="fas fa-shield-alt"></i></button>
<!-- <button onclick="copy()" >PANOYA KOPYALA <i class="fas fa-clipboard"></i></button> -->
<div class="kutu">
Sayı
<input type="radio" class="cbox" name="checks" id="sayisal">
Harf
<input type="radio" class="cbox" name="checks" id="harf">
Harf ve Sayı
<input type="radio" class="cbox" name="checks" id="harfsayi">
Karışık
<input type="radio" class="cbox" name="checks" id="random">
<button id="myBtn">Güncelleme Notları</button>
<p class="madeXRTH">XRTH PROJEKT <i class="fas fa-heart"></i> you.</i></p>
</div>
</div>
<p class="copy"></p>
</div>
<script src="app.js"></script>
<script src="modal.js"></script>
<script src="screen.js"></script>
</body>
</html>