archive/scheduleac/client/client.html
2016-02-07 02:04:30 -05:00

44 lines
668 B
HTML

<head>
<title>scheduleac</title>
</head>
<body>
<h1>Welcome to Meteor!</h1>
{{> loginButtons}}
{{> client}}
</body>
<template name="day">
<p>{{pretext}} {{aftertext}} </p>
</template>
<template name="recent">
<p>{{pretext}} {{aftertext}} </p>
</template>
<template name="client">
<div>
{{#each mostrecent}}
{{> recent}}
{{/each}}
</div>
<div>
{{#each sched}}
<div>
{{> day}}
</div>
{{/each}}
</div>
{{#if allowed}}
<input type="text" class="form-control" id="date">
<select id="post">
<option value="AC">AC</option>
<option value="Health">Health</option>
</select>
<button>Submit</button>
{{/if}}
</template>