-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1 from Jason-Terry/auth
Remove styles, re-strucutre site layuout, prep for auth implementation
- Loading branch information
Showing
23 changed files
with
199 additions
and
174 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,5 @@ | ||
<p> | ||
about works! | ||
</p> | ||
<div class="container"> | ||
<p> | ||
about works! | ||
</p> | ||
</div> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,41 @@ | ||
<div class="container"> | ||
<div class="box"> | ||
<h1 class="blog-title">Blog Title</h1> | ||
<h3>MM / DD / YYY </h3> | ||
Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nulla felis purus, posuere sed ex sed, cursus auctor | ||
nulla. Ut vitae mauris ante. Morbi commodo, mauris vitae mollis ornare, risus lectus bibendum elit, a facilisis | ||
eros tellus quis arcu. Donec mattis rhoncus turpis. Donec maximus ultrices egestas. Fusce ullamcorper nisl id | ||
eros aliquam, sit amet convallis dolor sollicitudin. Proin massa quam, accumsan ac aliquet in, finibus in magna. | ||
Morbi in eros id dolor molestie vulputate. Ut a libero et orci vestibulum feugiat volutpat at justo. Vestibulum | ||
vitae maximus urna. Donec vel ipsum eu justo suscipit euismod. Nam ultrices, lectus ac mollis semper, lorem urna | ||
condimentum est, sit amet luctus nulla mi at nunc. Nunc mi sapien, semper sit amet vulputate nec, varius ut | ||
metus. Cras vestibulum gravida lacus. Phasellus maximus vestibulum diam vel scelerisque. Phasellus quis nunc a | ||
nisi elementum hendrerit a non turpis. | ||
|
||
Nunc lobortis ex augue, bibendum finibus felis lacinia vitae. Vivamus rutrum magna arcu, id ultrices sapien | ||
euismod non. Etiam tortor ligula, aliquet ac ante ac, suscipit malesuada odio. Aliquam luctus nulla nec nisl | ||
ornare, a pharetra tellus sollicitudin. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere | ||
cubilia Curae; In in eros tincidunt, placerat nisl et, ultricies lorem. In a mattis massa. Suspendisse potenti. | ||
|
||
Curabitur ac consequat eros. Nullam non lectus eget lectus egestas mollis. Vestibulum posuere pellentesque | ||
pellentesque. Nunc placerat quam non magna dictum, at sollicitudin massa lacinia. Pellentesque commodo volutpat | ||
augue at ultricies. Vivamus ultricies pulvinar semper. Donec vel lobortis nulla. Nunc elit ante, dignissim non | ||
vehicula faucibus, interdum ut lorem. Sed fringilla, lorem accumsan ultrices dapibus, ante lorem vestibulum est, | ||
eget dapibus metus lacus quis libero. Cras ac orci ex. Mauris at molestie magna. In ullamcorper eros nec ex | ||
consequat, non imperdiet ipsum rutrum. Integer imperdiet rutrum vehicula. Fusce sit amet efficitur tellus, vitae | ||
mattis massa. Integer pellentesque dui eget aliquam tincidunt. Phasellus orci elit, dapibus eu facilisis et, | ||
lobortis ac orci. | ||
|
||
Sed vulputate fringilla cursus. Praesent at efficitur enim. Mauris placerat augue nec euismod rhoncus. Mauris | ||
varius mauris ut augue hendrerit, ut euismod urna lacinia. Duis ut nisi rutrum, varius erat vel, ultricies velit. | ||
Fusce venenatis congue nisl at malesuada. Nulla vel nibh varius, bibendum tortor et, ornare odio. Integer id ex | ||
at tellus blandit ornare sit amet sit amet est. Donec sit amet sapien felis. Curabitur id ligula sem. Duis et | ||
quam vulputate, auctor odio sit amet, rutrum enim. Nullam posuere, arcu at varius sodales, metus metus varius | ||
nisi, in fermentum purus nisi ornare mi. Etiam feugiat purus et dignissim condimentum. Phasellus vestibulum | ||
tellus et lorem rutrum, non vulputate arcu sollicitudin. | ||
|
||
Vestibulum aliquam varius elementum. Vestibulum quis quam vel neque ultrices ornare sed in dolor. Sed et vehicula | ||
magna. Curabitur porttitor convallis magna, vitae congue ex facilisis vitae. Proin in ullamcorper nisl. Quisque | ||
fringilla justo vel placerat volutpat. Aliquam non risus urna. | ||
</div> | ||
</div> |
10 changes: 5 additions & 5 deletions
10
src/app/contact/contact.component.spec.ts → ...app/blog-post/blog-post.component.spec.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
import { Component, OnInit } from '@angular/core'; | ||
|
||
@Component({ | ||
selector: 'app-blog-post', | ||
templateUrl: './blog-post.component.html', | ||
styleUrls: ['./blog-post.component.css'] | ||
}) | ||
export class BlogPostComponent implements OnInit { | ||
|
||
constructor() { } | ||
|
||
ngOnInit() { | ||
} | ||
|
||
} |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
<div class="container"> | ||
<div class="title-wrapper"> | ||
<p>editor works!</p> | ||
<button>SUBMIT</button> | ||
</div> | ||
<div class="editor-wrapper"> | ||
<quill-editor theme="bubble" [placeholder]="placeholder"></quill-editor> | ||
</div> | ||
</div> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
import { async, ComponentFixture, TestBed } from '@angular/core/testing'; | ||
|
||
import { EditorComponent } from './editor.component'; | ||
|
||
describe('EditorComponent', () => { | ||
let component: EditorComponent; | ||
let fixture: ComponentFixture<EditorComponent>; | ||
|
||
beforeEach(async(() => { | ||
TestBed.configureTestingModule({ | ||
declarations: [ EditorComponent ] | ||
}) | ||
.compileComponents(); | ||
})); | ||
|
||
beforeEach(() => { | ||
fixture = TestBed.createComponent(EditorComponent); | ||
component = fixture.componentInstance; | ||
fixture.detectChanges(); | ||
}); | ||
|
||
it('should create', () => { | ||
expect(component).toBeTruthy(); | ||
}); | ||
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,42 @@ | ||
import { Component, OnInit } from '@angular/core'; | ||
import { Form, FormGroup, FormControl, FormBuilder } from '@angular/forms'; | ||
|
||
|
||
@Component({ | ||
selector: 'app-editor', | ||
templateUrl: './editor.component.html', | ||
styleUrls: ['./editor.component.css'] | ||
}) | ||
|
||
export class EditorComponent implements OnInit { | ||
isReadOnly = false | ||
isRequired = false | ||
form: FormGroup | ||
|
||
placeholder = "What's on your mind?" | ||
|
||
constructor() { | ||
} | ||
|
||
ngOnInit() { | ||
|
||
} | ||
|
||
logChange($event: any) { | ||
// tslint:disable-next-line:no-console | ||
console.log($event) | ||
} | ||
|
||
logSelection($event: any) { | ||
// tslint:disable-next-line:no-console | ||
console.log($event) | ||
} | ||
|
||
toggleReadOnly() { | ||
this.isReadOnly = !this.isReadOnly | ||
} | ||
|
||
toggleRequired() { | ||
this.isRequired = !this.isRequired | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +0,0 @@ | ||
.container { | ||
border: solid 1px black; | ||
border-right: solid 2px black; | ||
border-bottom: solid 2px black; | ||
border-radius: 2pc; | ||
} | ||
|
||
quill-editor { | ||
display: block; | ||
} | ||
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,5 @@ | ||
<div class="container"> | ||
<h3>Bubble editor</h3> | ||
<div class="editor-wrapper"> | ||
<quill-editor theme="bubble" [placeholder]="placeholder"></quill-editor> | ||
</div> | ||
</div> | ||
<p> | ||
home works! | ||
</p> | ||
</div> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,42 +1,15 @@ | ||
import { Component, OnInit } from '@angular/core'; | ||
import { Form, FormGroup, FormControl, FormBuilder } from '@angular/forms'; | ||
|
||
|
||
@Component({ | ||
selector: 'app-home', | ||
templateUrl: './home.component.html', | ||
styleUrls: ['./home.component.css'] | ||
}) | ||
|
||
export class HomeComponent implements OnInit { | ||
isReadOnly = false | ||
isRequired = false | ||
form: FormGroup | ||
|
||
placeholder = 'placeholder' | ||
|
||
constructor() { | ||
} | ||
constructor() { } | ||
|
||
ngOnInit() { | ||
|
||
} | ||
|
||
logChange($event: any) { | ||
// tslint:disable-next-line:no-console | ||
console.log($event) | ||
} | ||
|
||
logSelection($event: any) { | ||
// tslint:disable-next-line:no-console | ||
console.log($event) | ||
} | ||
|
||
toggleReadOnly() { | ||
this.isReadOnly = !this.isReadOnly | ||
} | ||
|
||
toggleRequired() { | ||
this.isRequired = !this.isRequired | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,15 @@ | ||
<p> | ||
login works! | ||
</p> | ||
<div class="container"> | ||
<div calss="top-wrapper"> | ||
<h1> | ||
login works! | ||
</h1> | ||
|
||
</div> | ||
<div class="body-wrapper"> | ||
<form action="onSubmit()"> | ||
<input type="email" name="email" value="Email" autocomplete="off"> | ||
<input type="password" name="password" value="Password" autocomplete="off"> | ||
<input type="submit" value="submit"> | ||
</form> | ||
</div> | ||
</div> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -12,4 +12,8 @@ export class LoginComponent implements OnInit { | |
ngOnInit() { | ||
} | ||
|
||
onSubmit() { | ||
console.log('Submit called'); | ||
} | ||
|
||
} |
Oops, something went wrong.