-
Notifications
You must be signed in to change notification settings - Fork 0
/
member_portal.php
51 lines (31 loc) · 1.32 KB
/
member_portal.php
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
<?php
// INCLUDE ON EVERY TOP-LEVEL PAGE!
include("includes/init.php");
//FORM PHP
?>
<!DOCTYPE html>
<html lang="en">
<head>
<link href="https://fonts.googleapis.com/css?family=Montserrat&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Montserrat:600i&display=swap" rel="stylesheet">
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css" integrity="sha384-ggOyR0iXCbMQv3Xipma34MD+dH/1fQ784/j6cY/iJTQUOhcWr7x9JvoRxT2MZw1T" crossorigin="anonymous">
<link rel="stylesheet" type="text/css" href="styles/all.css" media="all" />
<script src= "javascript.js" ></script>
<title>Log In</title>
</head>
<body>
<div class = "container">
<?php include("includes/header.php"); ?>
<div class="contact-us">
<form>
<input placeholder="Name" required="" type="text" /><input name="customerEmail" placeholder="Email" type="email" /><input name="customerPhone" pattern="[0-9]{3}-[0-9]{3}-[0-9]{4}" placeholder="Phone" type="tel" /><button type="button">SIGN UP</button>
</form>
</div>
</div>
</body>
<footer>
<?php include("includes/footer.php"); ?>
</footer>
</html>