Created
March 11, 2014 10:35
-
-
Save neilmiddleton/9483222 to your computer and use it in GitHub Desktop.
This file contains hidden or 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 ng-include="'/assets/application/_header.html'"></div> | |
<div class="container"> | |
<form ng-submit="submit()"> | |
<div class="form-group"> | |
<input class="form-control" id="latitude" max="90" min="-90" ng-model="waypoint.latitude" placeholder="Latitude" required step="any" type="number"> | |
</div> | |
<div class="form-group"> | |
<input class="form-control" id="longitude" max="180" min="-180" ng-model="waypoint.longitude" placeholder="Longitude" required step="any" type="number"> | |
</div> | |
<div class="form-group"> | |
<button class="btn btn-primary" type="submit">Submit</button> | |
</div> | |
</form> | |
</div> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment