Skip welcome & menu and move to editor
Welcome to JS Bin
Load cached copy from
 
<!DOCTYPE html>
<html ng-app="app">
<head>
  <meta charset="utf-8">
  <meta name="viewport" content="width=device-width">
  <title>JS Bin</title>
<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.4.0/angular.js"></script>
  
</head>
<body ng-controller="SignupController">
                                        
                                                  
<form name="signupForm" novalidate ng-init="user={}">
    <input type="text" placeholder="Name..." ng-model="user.name" name="name" required />
    <input type="email" name="email" ng-model="user.email" placeholder="Email..." required />
    <input type="password" placeholder="Password..." ng-model="user.password" name="password" ng-minlength="7" ng-maxlength="50" required/>
    <button type="button" ng-click="signup(user)" ng-disabled="!user.email || !user.password">Sign Up</button>
</form>
  
  
                                                              
</body>
</html>
Output

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

Dismiss x
public
Bin info
krishcdbrypro
0viewers