Created
December 28, 2014 13:07
A modal dialog box example
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<div> | |
<h2>Contact us<h2> | |
<input type="text" placeholder="Name" ng-model="name" /> | |
<input type="text" placeholder="Email" ng-model="email" /> | |
<input type="text" placeholder="Mobile" ng-model="mobile" /> | |
<textarea placeholder="Enter your message or query..." ng-model="message"></textarea> | |
<div class="ngdialog-buttons"> | |
<button type="button" class="ngdialog-button ngdialog-button-secondary" ng-click=closeThisDialog("Cancel")>Cancel</button> | |
<button type="button" class="ngdialog-button ngdialog-button-primary" ng-click=confirm("OK")>OK</button> | |
</div> | |
</div> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment