Check in the frontend if the username and password in the survey are correct (fix #179) #185

Merged
cami merged 12 commits from frontend/check-username-pw-survey into main 2021-07-22 14:55:27 +00:00
2 changed files with 14 additions and 1 deletions
Showing only changes of commit 959912bd9b - Show all commits

View file

@ -0,0 +1,12 @@
import React from "react";
import "../App.css";
export default function BehaviorStudyEnd() {
return (
<>
<p>
Merci :-)
</p>
</>
);
}

View file

@ -9,6 +9,7 @@ import BehaviorNormal from "../BehaviorNormal";
import { Button } from "../Button";
import BehaviorPhone from "../BehaviorPhone";
import BehaviorStanding from "../BehaviorStanding";
import BehaviorStudyEnd from "../BehaviorStudyEnd";
export default function Study() {
const _logger = useRef(0);
@ -215,7 +216,7 @@ export default function Study() {
</>
);
const study_end = <p>Merci :-)</p>;
const study_end = <BehaviorStudyEnd />;
return (
<>