-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.php
86 lines (80 loc) · 2.9 KB
/
index.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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
<!DOCTYPE html>
<html>
<head>
<title>BecomingMe</title>
<link rel="stylesheet" href="style.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/4.0.0-alpha.6/css/bootstrap.min.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
</head>
<body>
<div class="Website container">
<div class="head">
<nav id="nav" class="navbar">
<ul>
<li class="active"><a href="index.php">BecomingMe</a></li>
<li style="float:right"><a href="login.php">Login</a></li>
<li style="float:right"><a href="register.php">Register</a></li>
</hr>
</ul>
</nav>
</div>
<div class="main">
<section class="">
</hr>
<center><h2>Becoming Me</h2>
<h3>Have you ever wanted to talk about your mental health experiences either posted on your own page or anonymously?</h3>
<h2>Becoming Me is just the website for you!</h2>
</hr>
</center>
</section>
<section class="">
<h3>Sign up below for updates</h3>
<form>
<div class="form-group">
<label for="exampleInputEmail1">Email address</label>
<input type="email" class="form-control" id="exampleInputEmail1" placeholder="Email">
</div>
<div class="form-group">
<label for="exampleInputPassword1">Password</label>
<input type="password" class="form-control" id="exampleInputPassword1" placeholder="Password">
</div>
<div class="checkbox">
<label>
<input type="checkbox"> Check me out
</label>
</div>
<button type="submit" class="btn btn-default">Submit</button>
</form>
</section>
</div>
<div class="footer">
<center><h4>Becoming Me </h4></center>
<center>
<div class="github">
<li id="github">
<a href="/~https://github.com/Alexcraven00/BecomingMe">
<i class="fa fa-2x fa-github" onmouseover="document.getElementById('github').style.color = 'blue'"
onmouseout="document.getElementById('github').style.color = 'white'" ></i>
</a>
</li>
<label><a href="/~https://github.com/Alexcraven00/BecomingMe">Visit our github </a></label>
</div>
<div class="facebook">
<center>
<li id="facebook">
<i class="fa fa-facebook-official fa-2x" onmouseover="document.getElementById('facebook').style.color = 'blue'"
onmouseout="document.getElementById('facebook').style.color = 'white'"
></i>
</li>
<label>Visit our Facebook</lable>
</center>
</div>
</div>
</div>
<script src="https://use.fontawesome.com/57e7668e7f.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/angular.js/1.6.1/angular.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/4.0.0-alpha.6/js/bootstrap.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.1.1/jquery.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jqueryui/1.12.1/jquery-ui.min.js"></script>
</body>
</html>