super-productivity/app-src/scripts/dialogs/welcome/welcome-c.html
2017-02-10 16:57:14 +01:00

42 lines
1.4 KiB
HTML

<md-dialog aria-label="Welcome Dialog"
class="welcome-dialog"
md-theme="vm.theme">
<md-toolbar>
<div class="md-toolbar-tools">
<h2>Welcome to Super Productivity!</h2>
<span flex></span>
<md-button class="md-icon-button"
aria-label="Cancel"
ng-click="vm.cancel()">
<ng-md-icon icon="close"></ng-md-icon>
</md-button>
</div>
</md-toolbar>
<md-dialog-content>
<div class="md-dialog-content">
<p>Happy to see you try out super productivity!</p>
<p>After familiarizing you with the basic functionality, you might want head over to
<a ui-sref="settings"
ng-click="vm.cancel()"
class="md-accent">the settings</a> to adjust everything to your personal needs<span ng-if="vm.IS_ELECTRON"> and to set up the Jira Integration</span>. You can find them under the cog icon in the upper right.
</p>
<p>Enjoy yourself!</p>
<md-switch ng-model="vm.isHideDialog"
ng-change="vm.hideDialogChange(vm.isHideDialog)"
aria-label="Don't show this dialog at startup any more">
Don't show this dialog at startup any more
</md-switch>
</div>
</md-dialog-content>
<md-dialog-actions>
<md-button ng-click="vm.cancel()"
type="button"
class="md-raised">
Dismiss
</md-button>
</md-dialog-actions>
</md-dialog>