dashboardwireguardwg-managervpnsite-to-siteobfuscationwireguard-vpn-setupwireguard-vpnwireguard-tunnelwireguard-dashboard
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
58 lines
1.5 KiB
58 lines
1.5 KiB
<div flex fxFill fxLayout="row" fxLayoutAlign="left top">
|
|
<div fxFlex="33" class="user-edit-component">
|
|
|
|
<mat-card>
|
|
<mat-card-title>
|
|
Edit User
|
|
</mat-card-title>
|
|
|
|
<mat-card-content>
|
|
<form [formGroup]="editForm" (ngSubmit)="editForm.valid && edit()" class="form">
|
|
|
|
<p>
|
|
<mat-form-field class="full-width">
|
|
<mat-label>Full Name</mat-label>
|
|
<input type="text" id="full_name" formControlName="full_name" matInput>
|
|
</mat-form-field>
|
|
</p>
|
|
|
|
<p>
|
|
<mat-form-field class="full-width">
|
|
<mat-label>Username</mat-label>
|
|
<input type="text" id="username" formControlName="username" matInput>
|
|
</mat-form-field>
|
|
</p>
|
|
|
|
<p>
|
|
<mat-form-field class="full-width">
|
|
<mat-label>E-Mail</mat-label>
|
|
<input type="text" id="email" formControlName="email" matInput>
|
|
</mat-form-field>
|
|
</p>
|
|
|
|
<p>
|
|
<mat-form-field class="full-width">
|
|
<mat-label>Password</mat-label>
|
|
<input type="password" id="password" formControlName="password" matInput>
|
|
</mat-form-field>
|
|
</p>
|
|
|
|
<button mat-raised-button color="primary" [disabled]="!editForm.valid" type="submit">
|
|
Edit User
|
|
</button>
|
|
|
|
|
|
</form>
|
|
</mat-card-content>
|
|
</mat-card>
|
|
</div>
|
|
|
|
<div fxFlex="66" class="user-edit-component">
|
|
<app-api-key></app-api-key>
|
|
</div>
|
|
|
|
|
|
|
|
</div>
|
|
|
|
|
|
|