-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.php
More file actions
26 lines (24 loc) · 714 Bytes
/
index.php
File metadata and controls
26 lines (24 loc) · 714 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
<!DOCTYPE html>
<!--
Created by Joannier Pinales
Sept. 1 2015
-->
<html>
<head>
<meta charset="UTF-8">
<title>Blog+</title>
<link rel="stylesheet" href="css/bootstrap-3.3.4-dist/css/bootstrap.min.css" type="text/css">
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<div class="welcome-msg container text-center">
<?php
echo "<h1>Welcome to Blog+</h2>";
?>
<form action="PHP/register.php" class="align-center">
<input type="submit" value="Register">
<input type="submit" formaction="PHP/login.php" value="Login">
</form>
</div>
</body>
</html>