Skip to content

Refinement on the system #1386

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 4 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/app/pages/about/about.html
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ <h3 class="ion-padding-top ion-padding-start">Internet</h3>
<ion-list lines="none">
<ion-item>
<ion-label>
Wifi network
Wifi Network
</ion-label>
<ion-label class="ion-text-end">
ica{{conferenceDate | date: 'y'}}
Expand Down
2 changes: 1 addition & 1 deletion src/app/pages/about/about.ts
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ import { PopoverPage } from '../about-popover/about-popover';
})
export class AboutPage {
location = 'madison';
conferenceDate = '2047-05-17';
conferenceDate = '2020-05-17';

selectOptions = {
header: 'Select a Location'
Expand Down
8 changes: 4 additions & 4 deletions src/app/pages/login/login.html
Original file line number Diff line number Diff line change
Expand Up @@ -16,27 +16,27 @@
<form #loginForm="ngForm" novalidate>
<ion-list>
<ion-item>
<ion-label position="stacked" color="primary">Username</ion-label>
<ion-label position="stacked" color="primary">Username:</ion-label>
<ion-input [(ngModel)]="login.username" name="username" type="text" #username="ngModel" spellcheck="false" autocapitalize="off"
required>
</ion-input>
</ion-item>

<ion-text color="danger">
<p [hidden]="username.valid || submitted == false" class="ion-padding-start">
Username is required
Username is Required
</p>
</ion-text>

<ion-item>
<ion-label position="stacked" color="primary">Password</ion-label>
<ion-label position="stacked" color="primary">Password:</ion-label>
<ion-input [(ngModel)]="login.password" name="password" type="password" #password="ngModel" required>
</ion-input>
</ion-item>

<ion-text color="danger">
<p [hidden]="password.valid || submitted == false" class="ion-padding-start">
Password is required
Password is Required
</p>
</ion-text>
</ion-list>
Expand Down
6 changes: 3 additions & 3 deletions src/app/pages/signup/signup.html
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,9 @@
</div>

<form #signupForm="ngForm" novalidate>
<ion-list lines="none">
<ion-list>
<ion-item>
<ion-label position="stacked" color="primary">Username</ion-label>
<ion-label position="stacked" color="primary">Username:</ion-label>
<ion-input [(ngModel)]="signup.username" name="username" type="text" #username="ngModel" required>
</ion-input>
</ion-item>
Expand All @@ -27,7 +27,7 @@
</ion-text>

<ion-item>
<ion-label position="stacked" color="primary">Password</ion-label>
<ion-label position="stacked" color="primary">Password:</ion-label>
<ion-input [(ngModel)]="signup.password" name="password" type="password" #password="ngModel" required>
</ion-input>
</ion-item>
Expand Down
6 changes: 3 additions & 3 deletions src/app/pages/support/support.html
Original file line number Diff line number Diff line change
Expand Up @@ -16,19 +16,19 @@
<form #submitForm="ngForm" novalidate (ngSubmit)="submit(submitForm)">
<ion-list lines="none">
<ion-item>
<ion-label position="stacked" color="primary">Enter your support message below</ion-label>
<ion-label position="stacked" color="primary">Enter your support message below:</ion-label>
<ion-textarea [(ngModel)]="supportMessage" name="supportQuestion" #supportQuestion="ngModel" rows="6" required></ion-textarea>
</ion-item>
</ion-list>

<ion-text color="danger">
<p [hidden]="supportQuestion.valid || submitted === false" class="ion-padding-start">
Support message is required
Support Message is Required
</p>
</ion-text>

<div class="ion-padding">
<ion-button expand="block" type="submit">Submit</ion-button>
<ion-button expand="block" type="submit">Send</ion-button>
</div>
</form>
</ion-content>