-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.php
47 lines (39 loc) · 939 Bytes
/
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
<!DOCTYPE html>
<html>
<head lang="en">
<title>Mental Assistance</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<style type="text/css">
body{
text-align: center;
display: flex;
flex-direction: column;
margin: 0;
height: 100vh;
justify-content: center;
align-content: center;
}
form input{
font-size: 1.5em;
padding: 1%;
border-radius: 10px;
}
</style>
</head>
<body>
<h1>Your Friends</h1>
<form>
<h1><a href="include/anonymous.php">Need a friend to talk Click here</a></h1>
</form>
<p>(OR)</p>
<form action="include/login.php" method="post">
<h1>Volunteer for our program</h1>
<input type="text" name="username" placeholder="Username">
<br><br>
<input type="password" name="password" placeholder="password">
<br><br>
<input type="submit" name="submit">
</form>
</body>
</html>