-
Notifications
You must be signed in to change notification settings - Fork 128
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
10 changed files
with
159 additions
and
69 deletions.
There are no files selected for viewing
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
30 changes: 29 additions & 1 deletion
30
AspNetCoreIdentity/ClientApp/app/components/app/app.component.html
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
1 change: 0 additions & 1 deletion
1
...eIdentity/ClientApp/app/components/claims/access-forbidden/access-forbidden.component.css
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 @@ | ||
.center {text-align: center; margin-left: auto; margin-right: auto; margin-bottom: auto; margin-top: auto;} | ||
|
||
.forbidden { | ||
color: whitesmoke; | ||
padding-bottom: 70px; | ||
} |
3 changes: 1 addition & 2 deletions
3
AspNetCoreIdentity/ClientApp/app/components/claims/claims.component.css
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,8 +1,7 @@ | ||
.claims { | ||
padding-top: 90px; | ||
word-wrap: break-word; | ||
} | ||
|
||
.claimType { | ||
color: #a94442; | ||
color: rgb(56, 132, 254); | ||
} |
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
4 changes: 0 additions & 4 deletions
4
AspNetCoreIdentity/ClientApp/app/components/streaming/add/add-video.component.css
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,7 +1,3 @@ | ||
.add-video { | ||
padding-top: 90px; | ||
} | ||
|
||
label.trial { | ||
color: whitesmoke; | ||
} | ||
|
73 changes: 38 additions & 35 deletions
73
AspNetCoreIdentity/ClientApp/app/components/streaming/add/add-video.component.html
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,44 +1,47 @@ | ||
<div class="row add-video"> | ||
<div class="col-md-6 col-md-offset-3"> | ||
<div class="panel panel-primary"> | ||
<div class="panel-heading"> | ||
<div class="row text-center"> | ||
Add New Video | ||
</div> | ||
<div class="col-md-12 text-center"> | ||
<h3>Add YouTube video to registered category</h3> | ||
</div> | ||
<div class="col-md-6 col-md-offset-3"> | ||
<div class="panel panel-primary"> | ||
<div class="panel-heading"> | ||
<div class="row text-center"> | ||
Add New Video | ||
</div> | ||
<div class="panel-body"> | ||
<div class="row"> | ||
<div class="col-lg-12"> | ||
<form id="register-form" method="post" role="form"> | ||
<div class="form-group"> | ||
<input type="text" name="title" id="title" [(ngModel)]="newVideo.title" tabindex="1" class="form-control" placeholder="Title" | ||
value=""> | ||
</div> | ||
<div class="form-group"> | ||
<input type="text" name="description" id="description" [(ngModel)]="newVideo.description" tabindex="2" class="form-control" | ||
placeholder="Description" value=""> | ||
</div> | ||
<div class="form-group"> | ||
<input type="text" name="url" id="url" [(ngModel)]="newVideo.url" tabindex="3" class="form-control" placeholder="Embed URL from YouTube" | ||
value=""> | ||
</div> | ||
<div class="form-group"> | ||
<select class="selectpicker" name="category" [(ngModel)]="newVideo.category"> | ||
<option *ngFor="let category of categories">{{category.category}}</option> | ||
</select> | ||
</div> | ||
<div class="form-group"> | ||
<div class="row"> | ||
<div class="col-sm-6 col-sm-offset-3"> | ||
<input type="text" name="register-submit" id="register-submit" (click)="addVideo()" class="form-control btn" | ||
value="Save"> | ||
</div> | ||
</div> | ||
<div class="panel-body"> | ||
<div class="row"> | ||
<div class="col-lg-12"> | ||
<form id="register-form" method="post" role="form"> | ||
<div class="form-group"> | ||
<input type="text" name="title" id="title" [(ngModel)]="newVideo.title" tabindex="1" class="form-control" placeholder="Title" | ||
value=""> | ||
</div> | ||
<div class="form-group"> | ||
<input type="text" name="description" id="description" [(ngModel)]="newVideo.description" tabindex="2" class="form-control" | ||
placeholder="Description" value=""> | ||
</div> | ||
<div class="form-group"> | ||
<input type="text" name="url" id="url" [(ngModel)]="newVideo.url" tabindex="3" class="form-control" placeholder="Embed URL from YouTube" | ||
value=""> | ||
</div> | ||
<div class="form-group"> | ||
<select class="selectpicker" name="category" [(ngModel)]="newVideo.category"> | ||
<option *ngFor="let category of categories">{{category.category}}</option> | ||
</select> | ||
</div> | ||
<div class="form-group"> | ||
<div class="row"> | ||
<div class="col-sm-6 col-sm-offset-3"> | ||
<input type="text" name="register-submit" id="register-submit" (click)="addVideo()" class="form-control btn" | ||
value="Save"> | ||
</div> | ||
</div> | ||
</form> | ||
</div> | ||
</div> | ||
</form> | ||
</div> | ||
</div> | ||
</div> | ||
</div> | ||
</div> | ||
</div> |
8 changes: 2 additions & 6 deletions
8
AspNetCoreIdentity/ClientApp/app/components/streaming/register/register.component.css
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