-
Notifications
You must be signed in to change notification settings - Fork 0
/
Home.html
67 lines (62 loc) · 1.85 KB
/
Home.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
<!-- TG start -->
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Portal</title>
<meta name="Portal" content="">
<style type="text/css">
body {
background: #2B2B2B;
color: white;
}
</style>
</head>
<h1>
<center>Welcome to Portal!</center>
</h1>
<br><br><br><br><br>
<body>
<style type="text/css">
td {
padding: 0 15px;
}
</style>
<table>
<tr>
<th>#</th>
<th>Requirement</th>
<th>Success Criteria</th>
</tr>
<tr>
<td>1 </td>
<td>The solution shall connect to an SQLite Database. </td>
<td>Each forum will have its URL, icon and optionally username and password stored in the database in a
retrievable manner.</td>
</tr>
<tr>
<td>2 </td>
<td>The solution shall incorporate a web scraper.</td>
<td>The Icon of the given URL will be downloaded.</td>
</tr>
<tr>
<td>3 </td>
<td>The solution shall allow the user to navigate between saved websites </td>
<td>Once a URL is given the website is saved and can be navigated to in the future</td>
</tr>
<tr>
<td>4 </td>
<td>The solution shall allow users to add and remove saved websites </td>
<td>The user can press a button and input, at minimum, the URL of the website</td>
</tr>
<tr>
<td>5 </td>
<td>The solution should be written in Python</td>
<td>It is written in Python</td>
</tr>
</table>
<br><br><br><br><br><br><br><br><br><br><br><br>
<center><p>We do not have any responsibility for what is displayed in this application!</p></center>
</body>
</html>
<!-- TG end -->