Skip to content

Commit 1ccb298

Browse files
author
Erik Mellum
committed
Slight fixes and improvements
1 parent b7085e8 commit 1ccb298

File tree

2 files changed

+32
-25
lines changed

2 files changed

+32
-25
lines changed

README.md

+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
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!

index.html

+25-25
Original file line numberDiff line numberDiff line change
@@ -14,39 +14,39 @@
1414
</head>
1515
<body>
1616
<div class="row">
17+
<h1>Welcome {{name}}</h1>
1718
<div class="large-12 columns" ng-init="signin=true">
1819
<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>
2729
</div>
2830
<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>
4546
</div>
4647
</div>
4748
</div>
4849
<div class="row">
4950
</div>
50-
5151
</body>
5252
</html>

0 commit comments

Comments
 (0)