Files
rockfish/wwwroot/js/templates/app.mailEdit.handlebars
2018-07-17 19:39:55 +00:00

30 lines
1.1 KiB
Handlebars

<div>
<form id="frm" method="post" action="index.html">
<div class="form-group">
<label for="message">Message</label>
<textarea class="form-control" id="message" rows="20" readonly />
</div>
<div id="sendToGroup" class="form-group invisible">
<label for="sendTo">Send to</label>
<input class="form-control" type="text" id="sendTo" name="sendTo" value="">
</div>
<div class="form-group">
<label for="composition">Reply</label>
<div class="btn-group float-right ml-5" role="group">
<button id="btn-send" type="button" class="btn btn-sm btn-outline-primary mdi mdi-send"></button>
</div>
<div class="form-check form-check-inline float-right">
<label class="form-check-label">
<input class="form-check-input" type="checkbox" id="trackDelivery" name="trackDelivery" >Receipt
</label>
</div>
<textarea class="form-control" id="composition" name="composition" rows="10" />
</div>
</form>
</div>