25 lines
384 B
HTML
25 lines
384 B
HTML
<head>
|
|
<title>scheduleac</title>
|
|
</head>
|
|
|
|
<body>
|
|
<h1>Welcome to Meteor!</h1>
|
|
{{> loginButtons}}
|
|
{{> client}}
|
|
</body>
|
|
|
|
|
|
|
|
<template name="client">
|
|
<input type="text" class="form-control" id="date">
|
|
|
|
{{#if allowed}}
|
|
<select id="post">
|
|
<option value="AC">AC</option>
|
|
<option value="Health">Health</option>
|
|
</select>
|
|
|
|
<button>Submit</button>
|
|
{{/if}}
|
|
</template>
|