Skip to content
Snippets Groups Projects
Commit d93419c2 authored by amasek6's avatar amasek6
Browse files

made login page have default NUID value of 50130305 user can not change value of nuid box

parent 549a3111
No related branches found
No related tags found
No related merge requests found
...@@ -37,8 +37,8 @@ function LoginScreen(props){ ...@@ -37,8 +37,8 @@ function LoginScreen(props){
<div left> <div left>
<div> <div>
<label className={styles.label}>NUID:</label> <label className={styles.label}>NUID:</label>
<input type="number" min="0" placeholder="NUID" onKeyDown={blockInvalidChar} <input type="number" min="0" placeholder="NUID" value={props.nuid} onKeyDown={blockInvalidChar}
className={styles.textBox} id="nuid"/> className={styles.textBox} id="nuid" readOnly />
</div> </div>
{advanced ? {advanced ?
......
This diff is collapsed.
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment