2013-09-18 16:05:51 -04:00
|
|
|
<div class="view-write">
|
2013-10-12 13:39:09 -04:00
|
|
|
<p class="title">{{title || 'New Mail'}}</p>
|
2013-09-12 07:36:40 -04:00
|
|
|
|
2013-09-19 06:36:57 -04:00
|
|
|
<div class="headers">
|
2013-09-14 12:20:25 -04:00
|
|
|
<p>
|
|
|
|
<span>To:</span>
|
2013-10-12 13:39:09 -04:00
|
|
|
<input type="email" ng-model="to" class="address-input" tabindex="1" focus-me>
|
2013-09-14 12:20:25 -04:00
|
|
|
</p>
|
|
|
|
<p>
|
2013-09-15 12:07:14 -04:00
|
|
|
<span>Cc:</span>
|
2013-10-05 09:28:33 -04:00
|
|
|
<input type="email" ng-model="cc" class="address-input" tabindex="2" disabled>
|
2013-09-14 12:20:25 -04:00
|
|
|
</p>
|
2013-09-12 07:36:40 -04:00
|
|
|
</div><!--/.address-headers-->
|
|
|
|
|
|
|
|
<div class="subject-box">
|
2013-09-13 08:11:47 -04:00
|
|
|
<div class="subject-line">
|
2013-09-14 12:20:25 -04:00
|
|
|
<input ng-model="subject" class="subject" spellcheck="true" tabindex="3" placeholder="Subject" ng-change="updatePreview()">
|
2013-09-13 08:11:47 -04:00
|
|
|
</div>
|
2013-09-18 16:05:51 -04:00
|
|
|
<button class="btn-attachment">
|
|
|
|
<div data-icon=""></div>
|
|
|
|
</button>
|
2013-09-12 11:22:17 -04:00
|
|
|
</div><!--/.subject-box-->
|
2013-09-12 07:36:40 -04:00
|
|
|
|
2013-09-18 17:59:04 -04:00
|
|
|
<div class="body">
|
2013-09-15 11:05:37 -04:00
|
|
|
<p ng-model="body" contentEditable="true" ng-change="updatePreview()" tabindex="4"></p>
|
2013-09-12 07:36:40 -04:00
|
|
|
|
2013-09-12 11:22:17 -04:00
|
|
|
<div class="encrypt-preview">
|
2013-09-13 08:11:47 -04:00
|
|
|
<p>-----BEGIN ENCRYPTED PREVIEW-----<br>{{ciphertextPreview}}<br>-----END ENCRYPTED PREVIEW-----</p>
|
2013-09-15 11:05:37 -04:00
|
|
|
<br>
|
|
|
|
<p>{{signature}}</p>
|
2013-09-12 11:22:17 -04:00
|
|
|
</div><!--/.encrypt-preview-->
|
2013-10-05 09:28:33 -04:00
|
|
|
</div><!--/.body-->
|
2013-09-12 11:22:17 -04:00
|
|
|
|
2013-09-18 16:05:51 -04:00
|
|
|
<div class="send-control">
|
|
|
|
<button ng-click="sendEmail()" class="btn" ng-disabled="!to" tabindex="5">Send securely</button>
|
|
|
|
</div>
|
2013-09-12 07:36:40 -04:00
|
|
|
</div>
|