Add Feedback at the registration process (fix #78) #79

Merged
cami merged 12 commits from feature/registerFeedback into main 2021-06-29 23:25:28 +00:00
3 changed files with 6 additions and 2 deletions
Showing only changes of commit dd139c6712 - Show all commits

View file

@ -11,6 +11,7 @@
--secondary: rgb(218, 218, 218);
--third: rgb(171, 183, 183);
--forth: rgb(255, 255, 255);
--error: rgb(221, 140, 18);
}
.home,
@ -54,3 +55,7 @@ h1 {
max-width: 60%;
margin-bottom: 4vh;
}
.errorMessage {
color: var(--error);
}

View file

@ -1,6 +1,5 @@
import React from "react";
import "./Input.css";
import "./Button.css";
function SubmitField(props) {
const InputValue = props.LabelName;

View file

@ -56,7 +56,7 @@ export default function Login() {
onChange={handleUsernameChange}
InputName="username"
/>
<p>{message}</p>
<p className="errorMessage">{message}</p>
<InputField
LabelName="Passwort"
InputType="password"