-
Notifications
You must be signed in to change notification settings - Fork 9
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
1 parent
59804c2
commit 7c95f31
Showing
3 changed files
with
13 additions
and
104 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
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 |
---|---|---|
|
@@ -13,7 +13,10 @@ | |
</div> | ||
</div> | ||
<div class="formular"> | ||
<p class="wrongLogin" *ngIf="error">{{error}}</p> | ||
<div *ngIf="error" class="alert alert-danger text-center" style="margin-bottom: 15px; width: 210px;"> | ||
<b>Login Failed: </b>{{error}} | ||
</div> | ||
<!-- <p class="wrongLogin" ></p> --> | ||
<!-- Formular --> | ||
<h1 class="LargeHeadline2 loginFont">Login</h1> | ||
<form #form="ngForm" novalidate (ngSubmit)="login(form)"> | ||
|
@@ -68,19 +71,4 @@ <h1 class="LargeHeadline2 loginFont">Login</h1> | |
</span> | ||
</div> | ||
</div> | ||
<!-- Repositories --> | ||
<div class="repositories" *ngIf="repositories"> | ||
<div id="repositoriesList"> | ||
<label class="MediumSubline1H4">Select Your Project:</label> | ||
<br> | ||
<ul class="repositoryList"> | ||
<li *ngFor="let repository of repositories; let i = index" > | ||
<img class="repo_img" *ngIf="this.apiService.isGithubRepo(repository)" src="../assets/GitHub-Mark-32px.png" alt="github"> | ||
<img class="repo_img" *ngIf="this.apiService.isJiraRepo(repository)" src="../assets/[email protected]" alt="jira"> | ||
<img class="repo_img" *ngIf="this.apiService.isCustomRepo(repository)" src="../assets/database-5-32.png" alt="database"> | ||
<a class="MediumBody2 repoLink" id="{{'repository_'+i}}" (click)="selectRepository(repository);" >{{repository.value}}</a> | ||
</li> | ||
</ul> | ||
</div> | ||
</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