Skip to content

Commit

Permalink
style(webfinger): update input
Browse files Browse the repository at this point in the history
  • Loading branch information
huynvn97 committed Oct 2, 2024
1 parent f70b5aa commit d03e15b
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Omejdn Admin UI
# Admin UI

Welcome to Omejdn!

Expand All @@ -20,12 +20,12 @@ Example config:

```yaml
- client_id: adminUI
client_name: Omejdn Admin UI
client_name: Admin UI
client_uri: http://localhost:4200
logo_uri: http://localhost:4200/assets/img/fhg.jpg
grant_types:
- authorization_code
software_id: Omejdn Admin UI
software_id: Admin UI
software_version: 0.0.0
token_endpoint_auth_method: none
redirect_uris: http://localhost:4200
Expand Down
6 changes: 3 additions & 3 deletions src/app/components/webfinger/webfinger.component.html
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,9 @@ <h2 class="page-title mb-3" translate>Webfinger.Webfinger</h2>
</button>
</div>
<div class="card-body">
<div class="input-group" *ngFor="let detail of getDetailKeys(mail)">
<span class="input-group-text" id="client_id">{{detail}}</span>
<input type="text" class="form-control" placeholder="value" name="detail-value"
<div class="input-group" style="margin-bottom: 10px;" *ngFor="let detail of getDetailKeys(mail)">
<span class="input-group-text rounded-left-side" id="client_id">{{detail}}</span>
<input type="text" class="form-control rounded-right-side" placeholder="value" name="detail-value"
[(ngModel)]="webfingerConfig[mail][detail]">
<button class="btn btn-outline-secondary btn-trash-circle" type="button" (click)="deleteDetail(mail, detail)">
<img alt="trash" src="assets/img/trash-icon.svg" />
Expand Down
2 changes: 1 addition & 1 deletion src/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<html lang="en">
<head>
<meta charset="utf-8" />
<title>Omejdn Admin UI</title>
<title>Admin UI</title>
<base href="/" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<link rel="icon" type="image/x-icon" href="favicon.ico" />
Expand Down

0 comments on commit d03e15b

Please sign in to comment.