-
Notifications
You must be signed in to change notification settings - Fork 0
/
bbcode.jsp
44 lines (40 loc) · 1.47 KB
/
bbcode.jsp
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
<!DOCTYPE html>
<html>
<head>
<title>Team 28 Chat App</title>
<link rel="stylesheet" href="/css/main.css">
</head>
<body>
<nav>
<a id="navTitle" href="/">Galehaut</a>
<a href="/conversations">Conversations</a>
<% if(request.getSession().getAttribute("user") != null){ %>
<a>Hello <%= request.getSession().getAttribute("user") %>!</a>
<% } else{ %>
<a href="/login">Login</a>
<a href="/register">Register</a>
<% } %>
<a href="/bbcode.jsp">BB Code Key</a>
</nav>
<div id="container">
<div
style="width:75%; margin-left:auto; margin-right:auto; margin-top: 50px;">
<h1>BB Code Key</h1>
<p>
This is a key designed to help users style their text.
</p>
<ul>
<li><strong>Bold Text</strong> [b] TEXT HERE [/b]</li>
<li><strong>Italicized Text</strong> [i]TEXT HERE [/i] </li>
<li><strong>Underlined Text</strong> [u] TEXT HERE [/u] </li>
<li><strong>Link</strong> [url] LINK HERE [/url]</li>
<li><strong> Image </strong> [img] IMAGE LINK [/img]</li>
<li><strong> Color Text </strong> [color = (input color here)] TEXT HERE [/color]</li>
<li><strong> Font Size </strong> [size = (input size here)] TEXT HERE [/size]</li>
<li><strong> Font Type </strong> [font = (input font here)] TEXT HERE [/font]</li>
<li><strong> Alignment </strong> [align = (left, right, center)] TEXT HERE [/algin]</li>
</ul>
</div>
</div>
</body>
</html>