-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
31 lines (26 loc) · 814 Bytes
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
<!DOCTYPE>
<html>
<head>
<meta charset="utf-8">
</head>
<body ng-app="registration">
<h1>HELLO</h1>
<div ng-controller="tabswitcher">
<div>
<button ng-click="tab = 1">#1</button>
<button ng-click="tab = 2" ng-disabled="!data.tab1.valid">#2</button>
<button ng-click="tab = 3" ng-disabled="!data.tab1.valid || !data.tab2.valid">#3</button>
<button ng-click="tab = 4" ng-disabled="!data.tab1.valid || !data.tab2.valid || !data.tab3.valid">#4</button>
</div>
<div>
<form name="registrationForm">
<div step1 ng-show="tab == 1"></div>
<div step2 ng-show="tab == 2"></div>
<div step3 ng-show="tab == 3"></div>
<div step4 ng-show="tab == 4"></div>
</form>
</div>
</div>
<script src="dist/app.js"></script>
</body>
</html>