Remove homeserver input

This commit is contained in:
Robert Long
2021-12-15 10:54:01 -08:00
parent 81144a7421
commit 382ca2baa4
4 changed files with 14 additions and 13 deletions

View File

@@ -67,17 +67,6 @@ export function LoginPage() {
<h2>Log In</h2>
<h4>To continue to Element</h4>
<form onSubmit={onSubmitLoginForm}>
<FieldRow>
<InputField
type="text"
value={homeserver}
onChange={(e) => setHomeServer(e.target.value)}
placeholder="Homeserver"
label="Homeserver"
autoCorrect="off"
autoCapitalize="none"
/>
</FieldRow>
<FieldRow>
<InputField
type="text"
@@ -86,6 +75,8 @@ export function LoginPage() {
label="Username"
autoCorrect="off"
autoCapitalize="none"
prefix="@"
suffix={`:${window.location.host}`}
/>
</FieldRow>
<FieldRow>