16 lines
392 B
Smarty
16 lines
392 B
Smarty
<html>
|
|
<head>
|
|
<title>{{title or 'No title'}}</title>
|
|
</head>
|
|
<body>
|
|
<form action="/" method="post">
|
|
<label for="date">Date:</label>
|
|
<input name="date" type="date" value="{{date or ''}}"/>
|
|
<label for="time">Heure:</label>
|
|
<input name="time" type="time" value="{{time or ''}}"/>
|
|
<input value="Chercher" type="submit" />
|
|
</form>
|
|
{{!base}}
|
|
</body>
|
|
</html>
|