-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
26 lines (25 loc) · 833 Bytes
/
index.html
File metadata and controls
26 lines (25 loc) · 833 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Say Hello</title>
</head>
<body>
<img src ="https://raw.githubusercontent.com/MariyaSha/SimpleGreetingApp/main/logo.png">
<br>
<!-- <link rel= "stylesheet" href = "main.css"> -->
<link rel = "stylesheet" href = "{{url_for('static',filename = 'css/main.css')}}">
<form action = "greet" method = "post">
<!-- {% for message in get_flashed_message()%}
<p>{{message}} </p>
{% endfor %} --->
<p>What's your name?</p>
<br>
<input type = "text" name = "name_input">
<br>
<input type = "submit" value = "GREET" id = "greet">
</form>
</body>
</html>