Skip to content

Commit

Permalink
Merge pull request #10 from azkyakhan/#1ym3jwv
Browse files Browse the repository at this point in the history
  • Loading branch information
dt2patel authored Jan 23, 2022
2 parents 9abcd90 + db2402d commit 809bcf9
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 3 deletions.
6 changes: 6 additions & 0 deletions changelogs/unreleased/-1ym3jwv.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
---
title: Fixed the position of input label on login page
ticket_id: "#1ym3jwv"
merge_request: 10
author: Azkya Khan
type: changed
6 changes: 3 additions & 3 deletions src/views/Login.vue
Original file line number Diff line number Diff line change
Expand Up @@ -6,15 +6,15 @@
<img src="../assets/images/hc.png"/>

<ion-item lines="full">
<ion-label>{{ $t("OMS") }}</ion-label>
<ion-label position="fixed">{{ $t("OMS") }}</ion-label>
<ion-input name="instanceUrl" v-model="instanceUrl" id="instanceUrl" type="text" required />
</ion-item>
<ion-item lines="full">
<ion-label>{{ $t("Username") }}</ion-label>
<ion-label position="fixed">{{ $t("Username") }}</ion-label>
<ion-input name="username" v-model="username" id="username" type="text" required />
</ion-item>
<ion-item lines="none">
<ion-label>{{ $t("Password") }}</ion-label>
<ion-label position="fixed">{{ $t("Password") }}</ion-label>
<ion-input name="password" v-model="password" id="password" type="password" required />
</ion-item>

Expand Down

0 comments on commit 809bcf9

Please sign in to comment.