Skip welcome & menu and move to editor
Welcome to JS Bin
Load cached copy from
 
<!DOCTYPE html>
<html ng-app="studentApp">
<head>
<meta name="description" content="Edit student Lab" />
<script src="http://code.jquery.com/jquery.min.js"></script>
<link href="http://getbootstrap.com/2.3.2/assets/css/bootstrap.css" rel="stylesheet" type="text/css" />
<link href="http://getbootstrap.com/2.3.2/assets/css/bootstrap-responsive.css" rel="stylesheet" type="text/css" />
<script src="http://getbootstrap.com/2.3.2/assets/js/bootstrap.js"></script>
<script src="http://cdnjs.cloudflare.com/ajax/libs/underscore.js/1.5.2/underscore-min.js"></script>
<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.2.12/angular.min.js"></script>
  <script src="http://code.angularjs.org/1.2.12/angular-route.js"></script>
<meta charset=utf-8 />
<title>JS Bin</title>
</head>
<body ng-controller="StudentCtrl as studentList">
  <ul>
    <li ng-repeat="student in studentList.students"><a href="#/students/{{student.id}}">{{student.name}}</a></li>
  </ul>
  <ng-view></ng-view>
</body>
  <script id="showStudent.html" type="text/ng-template">
    <dl>
      <dt>{{student.name}}</dt>
      <dd ng-show="student.email"><img ng-src="http://avatars.io/email/{{student.email}}" /></dd>
    </dl>
    <a href="#/students/{{student.id}}/edit">Edit<a>
  </script>
  <script id="editStudent.html" type="text/ng-template">
  <form name="studentForm" class="form-vertical" novalidate="true">
    <div class="control-group" ng-class="{error: studentForm.name.$invalid}">
      <label for="name" class="control-label">Name</label>
      <input name="name" type="text" />
    </div>
    <div class="control-group">
      <label for="email" class="control-label">Email</label>
      <input name="email" type="text"/>
    </div>
    <div class="form-actions">
      <input type="submit" class="btn primary" value="Save" />
      <input type="button" class="btn" value="Cancel">
    </div>
  </form>
  </script>
</body>
</html>
Output

You can jump to the latest bin by adding /latest to your URL

Dismiss x
public
Bin info
gaslightpro
0viewers