Skip to content

Commit 20446da

Browse files
committed
Angular Forms course
1 parent 2d22099 commit 20446da

File tree

124 files changed

+25
-4215
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

124 files changed

+25
-4215
lines changed

index.html

Lines changed: 7 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,14 @@
11
<!DOCTYPE html>
22
<html>
33
<head>
4-
<title>Really Understanding Angular - The Fundamentals</title>
4+
<title>Angular Forms Course</title>
55
<meta name="viewport" content="width=device-width, initial-scale=1">
66

77
<link rel="shortcut icon" href="favicon.ico" type="image/x-icon"/>
88
<link href="//fonts.googleapis.com/css?family=Roboto:400,300,500,400italic,700" rel="stylesheet" type="text/css">
99
<link href="//fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
1010
<link rel="stylesheet" href="https://angular-academy.s3-us-west-1.amazonaws.com/styles/angular-academy-lessons-theme-v1.css">
11+
<link rel="stylesheet" href="/src/common-styles/common.css">
1112

1213
</head>
1314

@@ -20,32 +21,17 @@
2021
<main class="l-main">
2122

2223
<div class="l-course-logo"></div>
23-
<div class="l-course-title">Getting Started with Angular - The Fundamentals</div>
24-
<div class="l-lesson-title">Lessons</div>
24+
<h1 class="course-title">Angular Forms Course</h1>
25+
26+
<img class="main-logo card card-strong" src="https://angular-academy.s3.amazonaws.com/thumbnails/angular-forms-small-v2.png">
27+
2528

2629
<div class="l-course-content card card-strong">
30+
2731
<ul>
28-
<li><a href="src/01-mvc-hello-world">MVC Hello World</a></li>
29-
<li><a href="src/02-template-syntax-properties">Template Syntax - Properties</a></li>
30-
<li><a href="src/03-template-syntax-interpolation">Template Syntax - Interpolation</a></li>
31-
<li><a href="src/04-template-syntax-events">Template Syntax - Events</a></li>
32-
<li><a href="src/components-inputs-and-outputs">Components Inputs And Outputs</a></li>
33-
<li><a href="src/05-template-syntax-components-essentials">Extended Components Example</a></li>
34-
<li><a href="src/exercise-color-sample">Exercise - Create a Color Picker</a></li>
35-
<li><a href="src/directives-intro">Introduction To Directives</a></li>
36-
<li><a href="src/core-directives-ng-for">Core Directives - ngFor</a></li>
37-
<li><a href="src/core-directives-ngstyle-ngclass">Core Directives - ngStyle/ngClass</a></li>
38-
<li><a href="src/core-directives-ngif">Core Directives - ngIf</a></li>
39-
<li><a href="src/directives">Attribute Directives Essentials</a></li>
40-
<li><a href="src/introduction-to-pipes">Introduction To Pipes</a></li>
41-
<li><a href="src/services-intro">Introduction To Services</a></li>
42-
<li><a href="src/modules-intro">Introduction To Modules</a></li>
43-
<li><a href="src/services-http">Services and HTTP In Detail</a></li>
4432
<li><a href="src/forms-template-driven">Template Driven Forms</a></li>
4533
<li><a href="src/forms-model-driven">Model Driven Forms</a></li>
4634
<li><a href="src/forms-signup-exercise">Forms Signup Exercise</a></li>
47-
<li><a href="src/router-introduction">Introduction to the Router</a></li>
48-
<li><a href="src/router-exercise">Router Exercise - Dashboard</a></li>
4935
</ul>
5036
</div>
5137

lessons-server.ts

Lines changed: 0 additions & 97 deletions
This file was deleted.

package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
{
2-
"name": "angular2-for-beginnners",
3-
"description": "Angular For Beginners - Course Lessons",
2+
"name": "angular-forms-course",
3+
"description": "Angular Forms Course",
44
"version": "1.0.0",
55
"scripts": {
6-
"start": "./node_modules/.bin/ts-node lessons-server.ts"
6+
"start": "./node_modules/.bin/http-server -c-1 ."
77
},
88
"devDependencies": {
99
"http-server": "^0.9.0"

src/01-mvc-hello-world/hello_world.ts

Lines changed: 0 additions & 29 deletions
This file was deleted.

src/01-mvc-hello-world/index.html

Lines changed: 0 additions & 63 deletions
This file was deleted.

src/01-mvc-hello-world/tsconfig.json

Lines changed: 0 additions & 13 deletions
This file was deleted.

src/02-template-syntax-properties/app.ts

Lines changed: 0 additions & 41 deletions
This file was deleted.

src/02-template-syntax-properties/index.html

Lines changed: 0 additions & 59 deletions
This file was deleted.

0 commit comments

Comments
 (0)