Skip to content

Instantly share code, notes, and snippets.

View 1mike12's full-sized avatar

Michael Qin 1mike12

  • Boston, United States
View GitHub Profile
var app = angular.module('validationExample', []);
app.controller('signupController', ['$scope', function($scope) {
$scope.submitted = false;
$scope.signupForm = function() {
if ($scope.signup_form.$valid) {
} else {
$scope.signup_form.submitted = true;
}