-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
169 lines (144 loc) · 5.2 KB
/
index.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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
<!DOCTYPE html>
<html lang="en">
<head>
<!--title is text-only and shown in browser title bar -->
<title>Mail</title>
<!-- Meta Tags: To ensure proper rendering and touch zooming, add the following meta tag inside the <head> element: -->
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- Bootstrap CSS ="bootstrap-5.1.3-dist/css/bootstrap.min.css" -->
<link rel="stylesheet" href="bootstrap-5.1.3-dist/css/bootstrap.css">
<link rel="stylesheet" type="text/css" href="style.css">
<script src="bootstrap-5.1.3-dist/js/bootstrap.min.js"></script>
</head>
<body>
<!-- container for the main body --> <!-- -->
<div class="container">
<div class="row profile">
<!-- Buffer Zone -->
<img src="Pics\woman.jpg" class="float-left" >
<p> Username </p>
<a href="#" class="btn">
Details
</a>
<a href="#" class="btn">
Logout
</a>
</div>
<!-- Button Row Main NavBar -->
<div class="row">
<div class="col-4 myplan">
<a href="#" class="btn">
My Plan
<img src="Pics/plan.png" alt="My Plan" class="img-fluid">
</a>
</div>
<div class="col-4 actionplan">
<a href="#" class="btn">
Action Plan
<img src="Pics/goal.png" alt="Action Plan" class="img-fluid">
</a>
</div>
<div class="col-4 mailnote">
<a href="index.html" class="btn">
Mail/Notes
<img src="Pics/mail.png" alt="Mail" class="img-fluid">
</a>
</div>
</div>
<div class="container box">
<!-- Button Row Mail&Notes -->
<div class="row">
<div class="col-sm inbox" aria-labelledby="inbox">
<a href="index.html" class="btn">
Inbox
<img src="Pics/inbox.png" alt="Inbox" class="img-fluid">
</a>
</div>
<div class="col-sm outbox" aria-labelledby="outbox">
<a href="outbox.html" class="btn">
Outbox
<img src="Pics/outbox.png" alt="Outbox" class="img-fluid">
</a>
</div>
<div class="col-sm send" aria-labelledby="send message">
<a href="sendmessage.html" class="btn">
Send Message
<img src="Pics/send.png" alt="Send message" class="img-fluid">
</a>
</div>
<div class="col-sm viewnote" aria-labelledby="view notes">
<a href="notes.html" class="btn">
View Notes
<img src="Pics/notes.png" alt="Notes" class="img-fluid">
</a>
</div>
</div>
<!-- start of Template -->
<div class="row">
<!-- first article --> <!-- this is where we would create a structure format - profile pic in first row -->
<div class="col-sm-1 pic">
<img src="Pics\yoda.jpg" alt="Picture of User Interface" class="img-fluid">
</div>
<div class="col-sm-2 message">
<p>NAME OF SENDER</p>
</div>
<div class="col-sm-8 message">
<p>SUBJECT</p>
</div>
<div class="col-sm-1 pic">
<a href="readmail.html">
<img src="Pics\openmail.png" alt="Picture of User Interface" class="img-fluid">
</a>
</div>
</div><!-- End of first Template -->
<div class="row">
<div class="col-sm-1 pic">
<img src="Pics\Giga.jpg" alt="Picture of User Interface" class="img-fluid">
</div>
<div class="col-sm-2 message">
<p>NAME OF SENDER</p>
</div>
<div class="col-sm-8 message">
<p>SUBJECT</p>
</div>
<div class="col-sm-1 pic">
<a href="readmail.html">
<img src="Pics\closemail.png" alt="Picture of User Interface" class="img-fluid">
</a>
</div>
</div><!-- End of Second row -->
<div class="row">
<div class="col-sm-1 pic">
<img src="Pics\man.jpg" alt="Picture of User Interface" class="img-fluid">
</div>
<div class="col-sm-2 message">
<p>NAME OF SENDER</p>
</div>
<div class="col-sm-8 message">
<p>SUBJECT</p>
</div>
<div class="col-sm-1 pic">
<a href="readmail.html">
<img src="Pics\openmail.png" alt="Picture of User Interface" class="img-fluid">
</a>
</div>
</div><!-- End of first Template -->
</div>
<div class="row button-row text-center">
<div class="col-sm-1 ">
<button type="button" class="btn btn-lg but ">BACK</button>
</div>
<div class="col-sm-10 outof">
<p> showing results X out of Y ??</p>
</div>
<div class="col-sm-1 ">
<button type="button" class="btn btn-lg but ">NEXT</button>
</div>
</div><!-- End button row -->
</div><!-- End container -->
<script type="text/javascript" src="https://cdn.rawgit.com/ricmoo/aes-js/e27b99df/index.js"></script>
<script src="encrypt.js"> </script>
</body>
<footer>
</footer>
</html>