|
2 | 2 | <html> |
3 | 3 | <head> |
4 | 4 | <meta charset="UTF-8" /> |
5 | | - <meta name="viewport" content="width=device-width, initial-scale=1.0" /> |
6 | | - <meta http-equiv="Content-Security-Policy" content="script-src 'self' 'unsafe-inline';" /> |
| 5 | + <meta name="viewport" content="width=device-width" /> |
| 6 | + <meta name="description" content="Passky is a simple, modern, lightweight, open-source and secure password manager." /> |
| 7 | + <meta name="mobile-web-app-capable" content="yes" /> |
| 8 | + <meta name="apple-mobile-web-app-capable" content="yes" /> |
| 9 | + <meta name="theme-color" content="#0D1117" /> |
| 10 | + <meta name="apple-mobile-web-app-status-bar-style" content="black" /> |
7 | 11 | <title>Passky</title> |
8 | 12 | <link rel="shortcut icon" type="image/png" href="images/logo.png"/> |
| 13 | + <link rel="apple-touch-icon" href="images/icons/apple-touch-icon.png" /> |
| 14 | + <link rel="apple-touch-icon" sizes="57x57" href="images/icons/apple-touch-icon-57x57.png" /> |
| 15 | + <link rel="apple-touch-icon" sizes="72x72" href="images/icons/apple-touch-icon-72x72.png" /> |
| 16 | + <link rel="apple-touch-icon" sizes="76x76" href="images/icons/apple-touch-icon-76x76.png" /> |
| 17 | + <link rel="apple-touch-icon" sizes="114x114" href="images/icons/apple-touch-icon-114x114.png" /> |
| 18 | + <link rel="apple-touch-icon" sizes="120x120" href="images/icons/apple-touch-icon-120x120.png" /> |
| 19 | + <link rel="apple-touch-icon" sizes="144x144" href="images/icons/apple-touch-icon-144x144.png" /> |
| 20 | + <link rel="apple-touch-icon" sizes="152x152" href="images/icons/apple-touch-icon-152x152.png" /> |
| 21 | + <link rel="apple-touch-icon" sizes="180x180" href="images/icons/apple-touch-icon-180x180.png" /> |
9 | 22 | <link rel="stylesheet" href="css/tailwind.min.css"> |
10 | 23 | <link rel="stylesheet" href="css/index.css"> |
11 | 24 | <link id="css-theme" type="text/css" rel="stylesheet" href="css/themes/dark.css"> |
| 25 | + <link rel="manifest" href="manifest.json"> |
12 | 26 | <script src="js/lang.js"></script> |
13 | 27 | <script src="js/header.js"></script> |
14 | 28 | </head> |
|
28 | 42 | <datalist id="servers"> |
29 | 43 | <option>https://eu1.passky.org</option> |
30 | 44 | <option>https://eu2.passky.org</option> |
| 45 | + <option>https://us1.passky.org</option> |
| 46 | + <option>https://us2.passky.org</option> |
31 | 47 | </datalist> |
32 | 48 | </div> |
33 | 49 | <div> |
|
44 | 60 | </div> |
45 | 61 | </div> |
46 | 62 |
|
47 | | - <fieldset> |
48 | | - <legend class="sr-only">New login system</legend> |
49 | | - <div class="relative flex items-start"> |
50 | | - <div class="flex items-center h-5"> |
51 | | - <input id="new-login-system" type="checkbox" class="tertiaryBackgroundColor primaryColor h-4 w-4 primaryBorderColor rounded" checked> |
52 | | - </div> |
53 | | - <div class="ml-3 text-sm"> |
54 | | - <a class="primaryColor">New login system</a> |
55 | | - </div> |
56 | | - </div> |
57 | | - </fieldset> |
58 | | - |
59 | 63 | <div id="dialog" class="fixed z-10 inset-0 overflow-y-auto invisible" aria-labelledby="dialog-title" role="dialog" aria-modal="true"> |
60 | 64 | <div class="flex items-end justify-center min-h-screen pt-4 px-4 pb-20 text-center sm:block sm:p-0"> |
61 | 65 | <div class="fixed inset-0 bg-gray-500 bg-opacity-75 transition-opacity" aria-hidden="true"></div> |
@@ -103,6 +107,7 @@ <h3 class="tertiaryColor text-lg leading-6 font-medium" id="dialog-title"></h3> |
103 | 107 | <script src="js/aes.js"></script> |
104 | 108 | <script src="js/default-functions.js"></script> |
105 | 109 | <script src="js/sha512.js"></script> |
| 110 | + <script src="js/PasskyAPI.js"></script> |
106 | 111 | <script src="js/login.js"></script> |
107 | 112 | </body> |
108 | 113 | </html> |
0 commit comments