Angular
Appearance
Look up angular in Wiktionary, the free dictionary.
Angular may refer to:
Anatomy
- Angular artery, the terminal part of the facial artery
- Angular bone, a large bone in the lower jaw of amphibians and reptiles
- Angular incisure, a small anatomical notch on the stomach
- Angular gyrus, a region of the brain in the parietal lobe
- Angular vein, formed by the junction of the frontal vein and supraorbital vein
Other uses
- Angular (application platform), an open-source web application platform launched in 2016
- AngularJS, an open-source web application framework started in 2009
- Angle, having an angle or angles
- Angular Recording Corporation, a British independent record label
See also
web app
<html ng-app="myApp"> <head>
<title>BookStore</title> <link rel="stylesheet" href="bower_components/bootstrap/dist/css/bootstrap.css"> <link rel="stylesheet" href="css/style.css">
</head> <body> <nav class="navbar navbar-default">
</nav>
<script src="/bower_components/jquery/dist/jquery.js"></script> <script src="/bower_components/angular/angular.js"></script> <script src="/bower_components/angular-route/angular-route.js"></script> <script src="/bower_components/bootstrap/dist/js/bootstrap.js"></script> <script src="/app.js"></script> <script src="/controllers/books.js"></script> <script src="/controllers/genres.js"></script> </body> </html>
<checkkkk></checkkkk>
a href="#/books">Go Back</a>
Add Book
<form ng-submit="addBook()">
<label>Title</label> <input type="text" class="form-control" ng-model="book.title" placeholder="Title">
<label>Genre</label> <select ng-model="book.genre" class="form-control"> <option value="Suspense">Suspense</option> <option value="Drama">Drama</option> <option value="Romance">Romance</option> <option value="NonFiction">NonFiction</option> <option value="Other">Other</option> </select>
<label>Author</label> <input type="text" class="form-control" ng-model="book.author" placeholder="Author">
<label>Publisher</label> <input type="text" class="form-control" ng-model="book.publisher" placeholder="Publisher">
<label>Pages</label> <input type="text" class="form-control" ng-model="book.pages" placeholder="Pages">
<label>Description</label> <textarea class="form-control" ng-model="book.description" placeholder="Description"></textarea>
<label>Image URL</label> <input type="text" class="form-control" ng-model="book.image_url" placeholder="Image URL">
<label>Buy URL</label> <input type="text" class="form-control" ng-model="book.buy_url" placeholder="Buy URL">
<button type="submit" class="btn btn-default">Submit</button> </form>
<checkkkk></checkkkk>
a href="#/books">Go Back</a>
<img src="Template:Book.image url">
Template:Book.description
- Genre: Template:Book.genre
- Author: Template:Book.author
- Publisher: Template:Book.publisher
- Pages: Template:Book.pages
<a target="_blank" href="Template:Book.buy url" class="btn btn-primary">Buy on Amazon</a>
<a href="#/books/edit/Template:Book. id">Edit</a> | <a href="#" ng-click="removeBook(book._id)">Delete</a>
<checkkkk></checkkkk>
Latest Books
a class="btn btn-primary" href="#/books/details/Template:Book. id">View Details</a>
<img class="thumbnail" src="Template:Book.image url">
<checkkkk></checkkkk>
a href="#/books">Go Back</a>
Edit Book
<form ng-submit="updateBook()" ng-init="getBook()">
<label>Title</label> <input type="text" class="form-control" ng-model="book.title" placeholder="Title">
<label>Genre</label> <select ng-model="book.genre" class="form-control"> <option value="Suspense">Suspense</option> <option value="Drama">Drama</option> <option value="Romance">Romance</option> <option value="NonFiction">NonFiction</option> <option value="Other">Other</option> </select>
<label>Author</label> <input type="text" class="form-control" ng-model="book.author" placeholder="Author">
<label>Publisher</label> <input type="text" class="form-control" ng-model="book.publisher" placeholder="Publisher">
<label>Pages</label> <input type="text" class="form-control" ng-model="book.pages" placeholder="Pages">
<label>Description</label> <textarea class="form-control" ng-model="book.description" placeholder="Description"></textarea>
<label>Image URL</label> <input type="text" class="form-control" ng-model="book.image_url" placeholder="Image URL">
<label>Buy URL</label> <input type="text" class="form-control" ng-model="book.buy_url" placeholder="Buy URL">
<button type="submit" class="btn btn-default">Submit</button> </form>