-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathUserScreen.html
46 lines (39 loc) · 1.82 KB
/
UserScreen.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
{% load static %}
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta name="description" content="" />
<meta name="keywords" content="" />
<title>Deep Fake</title>
<meta http-equiv="content-type" content="text/html; charset=utf-8" />
<link rel="stylesheet" type="text/css" href="{% static 'style.css' %}"/>
</head>
<body>
<div id="wrapper">
<div id="header">
<div id="logo">
<center><font size="2" color="yellow">Deepfake Detection on Social Media: Leveraging Deep Learning and FastText Embeddings for
Identifying Machine-Generated Tweets</font></center>
</div>
<div id="slogan">
</div>
</div>
<div id="menu">
<ul><center>
<li class="first current_page_item"><a href="{% url 'LoadDataset' %}"><font size="" color="yellow">Load Dataset</font></a></li>
<li class="first current_page_item"><a href="{% url 'FastText' %}"><font size="" color="yellow">Fast Text Embedding</font></a></li>
<li class="first current_page_item"><a href="{% url 'TrainML' %}"><font size="" color="yellow">Run All Algorithms</font></a></li>
<li class="first current_page_item"><a href="{% url 'DetectFake' %}"><font size="" color="yellow">Predict Deep Fake</font></a></li>
<li class="first current_page_item"><a href="{% url 'index' %}"><font size="" color="yellow">Logout</font></a></li>
</center></ul>
<br class="clearfix" />
</div>
<div id="splash">
<img class="pic" src="{% static 'images/investor.jpg' %}" width="870" height="230" alt="" />
</div>
<br/>
<font size="" color="red"><center>{{ data|safe }}</center></font><br/>
<p align="justify"><font size="3" color="black" style="font-family: Comic Sans MS">
Event Detection & Trust Verification</p>
</body>
</html>