I'm trying to get the second password input only to show after the user starts typing into the first input. Also, is there are way to either "require" them both or none at all?
<form name="signUpForm">
...
<input ng-modal="password" type="password" placeholder="password">
<input ng-show="password.$dirty" class="animate-show animate-hide" type="password" placeholder="password (again)">
</form>
ng-modalmust beng-model. Your input must have a name ("password" for example), and the correct way to access its dirty flag is to usesignupForm.password.$dirty.$validandrequired. GL!