-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathemail.html
More file actions
38 lines (27 loc) · 764 Bytes
/
email.html
File metadata and controls
38 lines (27 loc) · 764 Bytes
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
<!DOCTYPE html>
<html>
<head>
<title>Email</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 For Emails</h2>
</div>
</header>
<div class="ml-container">
<form action="{{ url_for('predictemail')}}" method="POST">
<p>Enter Your Mail text Here</p>
<!-- <input type="text" name="comment"/> -->
<textarea name="comment" rows="4" cols="50"></textarea>
<br/>
<input type="submit" class="btn-info" value="Predict">
</form>
</div>
</body>
</html>