-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfirebase.html
89 lines (87 loc) · 2.06 KB
/
firebase.html
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
87
88
89
<html>
<head>
<title>E-commerce Social Media Webapp</title>
<style>
body {
background-color: white;
}
nav {
position: fixed;
right: 0;
top: 0;
width: 200px;
background-color: purple;
padding: 10px;
}
nav a {
color: lemon-green;
text-decoration: none;
}
nav a:hover {
color: white;
}
</style>
</head>
<body>
<style>
.logo {
width: 100px;
height: 100px;
border-radius: 50%;
background-color: purple;
color: lemon green;
text-align: center;
font-size: 20px;
}
</style>
<div class="logo">
<span>Richmond</span>
<span>CFA</span>
<nav>
<hr>
<a href="#">Dashboard</a>
</hr>
<hr>
<a href="#">Products</a>
</hr>
<hr>
<a href="#">Services</a>
</hr>
<hr>
<a href="#">About</a>
</hr>
<hr>
<a href="#">Contact</a>
</hr>
</nav>
<h1>E-commerce Social Media Webapp</h1>
<h2>Login</h2>
<form action="login.php" method="POST">
<input type="text" name="username" placeholder="Username">
<input type="password" name="password" placeholder="Password">
<input type="submit" value="Login">
</form>
<h2>Create Account</h2>
<form action="create_account.php" method="POST">
<input type="text" name="username" placeholder="Username">
<input type="password" name="password" placeholder="Password">
<input type="submit" value="Create Account">
</form>
<p>To learn more about the features of this web application, please visit our <a href="#">website</a>.</p>
<div class="bottom-right-buttons">
<a href="#" class="logout-button">Logout</a>
<a href="#" class="help">Help</a>
<a href="#" class="contact-travel-agency">Contact Travel Agency</a>
<a href="#" class="notifications">Notifications</a>
<a href="#" class="benefits">Benefits</a>
<a href="#" class="live">Live</a>
<a href="#" class="mtn-and-orange-momo-payments">MTN and Orange Momo Payments</a>
<a href="#" class="terms-and-privacy">Terms and Privacy</a>
<a href="#" class="change-color-theme">Change Color Theme</a>
<a href="#" class="chat">Chat</a>
<a href="#" class="search">Search</a>
<a href="#" class="menu">Menu</a>
<a href="#" class="sms">SMS</a>
</div>
</body>
</html>