Skip to content

Commit

Permalink
Update index.html
Browse files Browse the repository at this point in the history
Reordered the fields, and added new ones
  • Loading branch information
kbkozlev authored Oct 11, 2024
1 parent e719e8e commit 16c5169
Showing 1 changed file with 8 additions and 9 deletions.
17 changes: 8 additions & 9 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -24,10 +24,6 @@ <h2>SAP JAVA Connection Configuration</h2>
placeholder="00 - 99"
required>

<label for="sid">System ID</label>
<input type="text" id="sid" name="sid"
placeholder="e.g. S4H">

<!-- Dropdown Menu with new styling -->
<label for="mode">Mode</label>
<div>
Expand All @@ -39,22 +35,25 @@ <h2>SAP JAVA Connection Configuration</h2>

<!-- Additional fields for Advanced Mode (Initially Hidden) -->
<div id="advancedFields" class="hidden">

<label for="client">Client</label>
<input type="text" id="client" name="client"
placeholder="001 - 999">

<label for="uname">Username</label>
<input type="text" id="uname" name="uname"
placeholder="Enter username">

<label for="language">Language</label>
<input type="text" id="language" name="language"
placeholder="EN"
pattern="^[a-Z]{2}$"
autocapitalize="characters"
maxlength="2">

<label for="uname">Username</label>
<input type="text" id="uname" name="uname" placeholder="Enter username">
<label for="transaction">Transaction</label>
<input type="text" id="transaction" name="transaction"
placeholder="MIGO">

<label for="password">Password</label>
<input type="password" id="password" name="password" placeholder="Enter password">
</div>

<button type="submit">Submit</button>
Expand Down

0 comments on commit 16c5169

Please sign in to comment.