-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
27 lines (23 loc) · 893 Bytes
/
index.html
File metadata and controls
27 lines (23 loc) · 893 Bytes
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
<!DOCTYPE html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>PHP Encryption</title>
<meta name="description" content="Just a description...">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="styles/main.css">
</head>
<body>
<!--[if lt IE 8]>
<p>You are using an <strong>outdated</strong> browser. PLEASE <a href="http://browsehappy.com/">upgrade your browser</a> to improve your experience and live a happier life!</p>
<![endif]-->
<h1>Encrypting Stuff</h1>
<!-- Needs to use the encryption.php file & check the password security -->
<form action="encryption.php" method="post">
<label>Username</label>
<input type="text" name="username" required>
<label>Password</label>
<input type="password" name="password" required>
</form>
</body>
</html>