1
0
mirror of https://github.com/actix/examples synced 2025-06-29 10:14:58 +02:00

Add tiny_template as an example. (#358)

This commit is contained in:
Hanif Ariffin
2020-09-10 16:34:32 -04:00
committed by GitHub
parent ec6e14aacc
commit adccbe2a13
10 changed files with 183 additions and 10 deletions

View File

@ -0,0 +1,17 @@
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<title>Actix web</title>
</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>