File tree 2 files changed +32
-25
lines changed
2 files changed +32
-25
lines changed Original file line number Diff line number Diff line change
1
+ # angular-intro
2
+
3
+ ## Intro to Angular Setup
4
+ 1 . Open Terminal
5
+ 2 . ` git clone [email protected] :csuwebdev/angular-intro.git `
6
+
7
+ Open index.html to see the website!
Original file line number Diff line number Diff line change 14
14
</ head >
15
15
< body >
16
16
< div class ="row ">
17
+ < h1 > Welcome {{name}}</ h1 >
17
18
< div class ="large-12 columns " ng-init ="signin=true ">
18
19
< div ng-show ="signin ">
19
- < h1 > Sign in</ h1 >
20
- < label > Username
21
- < input type ="text " ng-model ="name ">
22
- </ label >
23
- < label > Password
24
- < input type ="text " ng-model ="test ">
25
- </ label >
26
- < button class ="button radius success " ng-click ="signin=false "> Sign up</ button >
20
+ < h3 > Sign in</ h3 >
21
+ < label > Username
22
+ < input type ="text " placeholder ="emellum " ng-model ="name ">
23
+ </ label >
24
+ < label > Password
25
+ < input type ="password " placeholder ="scotchyscotch " ng-model ="password ">
26
+ </ label >
27
+ < button class ="button radius success " > Login (not implemented)</ button >
28
+ < button class ="button radius warning " ng-click ="signin=false "> Sign up</ button >
27
29
</ div >
28
30
< div ng-hide ="signin ">
29
- < h1 > Sign up</ h1 >
30
- < label > Username
31
- < input type ="text " ng-model ="name ">
32
- </ label >
33
- < label > Email
34
- < input type ="text " ng-model ="test ">
35
- </ label >
36
- < label > Password
37
- < input type ="text " ng-model ="test ">
38
- </ label >
39
- < label > Confirm Password
40
- < input type ="text " ng-model ="name ">
41
- </ label >
42
-
43
- < button class ="button radius success " ng-click ="signin=true "> Sign in</ button >
44
-
31
+ < h3 > Sign up</ h3 >
32
+ < label > Username
33
+ < input type ="text " placeholder ="emellum " ng-model ="name ">
34
+ </ label >
35
+ < label > Email
36
+ < input type ="
email "
placeholder ="
[email protected] "
ng-model ="
email "
>
37
+ </ label >
38
+ < label > Password
39
+ < input type ="password " placeholder ="scotchyscotch " ng-model ="password ">
40
+ </ label >
41
+ < label > Confirm Password
42
+ < input type ="password " placeholder ="scotchyscotch " ng-model ="confirm ">
43
+ </ label >
44
+ < button class ="button radius success "> Create Account (not implemented)</ button >
45
+ < button class ="button radius warning " ng-click ="signin=true "> Sign in</ button >
45
46
</ div >
46
47
</ div >
47
48
</ div >
48
49
< div class ="row ">
49
50
</ div >
50
-
51
51
</ body >
52
52
</ html >
You can’t perform that action at this time.
0 commit comments