-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpage5.php
More file actions
37 lines (37 loc) · 955 Bytes
/
Copy pathpage5.php
File metadata and controls
37 lines (37 loc) · 955 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
28
29
30
31
32
33
34
35
36
37
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width">
<link rel="stylesheet" href="./page1.css">
<title>
Alter Web Tutorials
</title>
</head>
<body id="Login">
<header>
<div class="container">
<div id="branding">
<h1><span>Alter</span> Web Tutorials</h1>
</div>
<nav>
<ul>
<li><a href="page1.php">Posts</a></li>
<li><a href="page3.php">Add Post</a></li>
<li><a href="page5.php">Login</a></li>
</ul>
</nav>
</div>
</header>
<section class="loginform" >
<h1>Login</h1>
<form>
User ID <br><input type="Name" name="Name" placeholder="Enter your name..." class="input_1"><br>
Password <br><input type="Password" name="Password" placeholder="***********" class="input_1"><br>
<button class="button">Get in!</button>
</form>
</section>
<footer>
<p>Alter Web Tutorials © 2019</p>
</footer>
</body>