-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathhome.html
More file actions
44 lines (36 loc) · 1.11 KB
/
home.html
File metadata and controls
44 lines (36 loc) · 1.11 KB
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>Home</title>
<!-- <link rel="stylesheet" type="text/css" href="../static/css/styles.css"> -->
<link rel="stylesheet" type="text/css" href="{{ url_for('static', filename='css/styles.css') }}">
</head>
<body>
<header>
<div class="container">
<div id="brandname">
ML App
</div>
<h2>Spam Detection</h2>
</div>
</header>
<div class="ml-container">
<center>
<form action="{{ url_for('text')}}" method="POST">
<label for="spam">Choose what kind of spam you want to detect:</label>
<br>
<input type="submit" class="btn-info" value="Text"> </input>
</form>
<form action="{{ url_for('sms')}}" method="POST">
<input type="submit" class="btn-info" value="SMS"> </input>
</form>
<form action="{{ url_for('email')}}" method="POST">
<input type="submit" class="btn-info" value="Email"> </input>
</form>
<form action="{{ url_for('youtube')}}" method="POST">
<input type="submit" class="btn-info" value="Youtube"> </input>
</form>
<center>
</div>
</body>
</html>