1
0
mirror of https://github.com/actix/examples synced 2024-11-24 14:53:00 +01:00
examples/templating/yarte/templates/deep/more/card/form.hbs

17 lines
400 B
Handlebars
Raw Normal View History

2019-04-01 01:23:31 +02:00
{{!
Form: What is your name?
!}}
{{> ../deep/welcome id = "welcome", tag = "h1", tail = '!' ~}}
<div>
<h3>What is your name?</h3>
<form>
{{! Input name !}}
Name: <input type="text" name="name" /><br/>
2019-04-01 01:23:31 +02:00
{{! Input last name !}}
Last name: <input type="text" name="lastname"/><br/>
<p>
<input type="submit">
</p>
</form>
2019-04-01 01:23:31 +02:00
</div>