1
0
mirror of https://github.com/actix/examples synced 2024-11-24 06:43:00 +01:00
examples/template_engines/tinytemplate/templates/index.html

18 lines
283 B
HTML
Raw Normal View History

2018-04-24 18:12:48 +02:00
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
2022-02-06 09:25:38 +01:00
<title>Actix Web</title>
2018-04-24 18:12:48 +02:00
</head>
<body>
<h1>Welcome!</h1>
<p>
<h3>What is your name?</h3>
<form>
<input type="text" name="name" /><br/>
<p><input type="submit"></p>
</form>
</p>
</body>
</html>