2023-12-21 19:31:14 +01:00
|
|
|
<script lang="ts">
|
2023-12-12 19:40:39 +01:00
|
|
|
import UserFormInput from "../../components/userform/UserFormInput.svelte";
|
|
|
|
import ArrowBack from "../../components/svg/ArrowBack.svelte";
|
2023-12-14 19:31:08 +01:00
|
|
|
import ButtonComponent from "../../components/userform/inputs/ButtonComponent.svelte";
|
2023-12-21 19:31:14 +01:00
|
|
|
import { postFormData } from "../../api/postFormData";
|
|
|
|
|
|
|
|
let age: string = "18-20"
|
|
|
|
let education: string = "PhD"
|
|
|
|
let healthcare_personnel: string = "Ja"
|
|
|
|
let gender: string = "Mann"
|
2023-12-12 19:40:39 +01:00
|
|
|
</script>
|
|
|
|
|
|
|
|
<div class="flex flex-col justify-center gap-20 h-full ">
|
|
|
|
<a class="ml-32" href="/">
|
|
|
|
<ArrowBack width="2rem" />
|
|
|
|
</a>
|
|
|
|
<div class="flex h-4/5 ">
|
|
|
|
<div class="flex flex-col justify-center w-2/4 gap-4 px-32 ">
|
|
|
|
<h1 class="text-3xl text-primary font-bold">Medisinsk AI Samtale Undersøkelse</h1>
|
|
|
|
<p>For å kunne få strukturert undersøkelsen så må det samles inn litt informasjon.
|
|
|
|
<p>Her trengs det alder, utdanningsgrad, om du er helsepersonell og kjønn.</p>
|
|
|
|
<p>Vi vil igjen nevne at denne undersøkelsen er helt anonym og informasjonen vil kun bli brukt til å forbedre vår tjeneste.</p>
|
|
|
|
</div>
|
|
|
|
<div class="flex flex-col justify-start items-center w-2/4">
|
2023-12-21 19:31:14 +01:00
|
|
|
<UserFormInput formData={age} on:update={(e) => age = e.detail} inputType="radio" label="Alder" options={["18-20", "20-30", "30-40", "40-50", "50-60"]}/>
|
|
|
|
<UserFormInput formData={education} on:update={(e) => education = e.detail} inputType="select" label="Utdanningsgrad" options={["PhD", "Master", "Fagbrev", "Bachelor"]}/>
|
|
|
|
<UserFormInput formData={healthcare_personnel} on:update={(e) => healthcare_personnel = e.detail} inputType="radio" label="Helsepersonell" options={["Ja", "Nei"]}/>
|
|
|
|
<UserFormInput formData={gender} on:update={(e) => gender = e.detail} inputType="radio" label="Kjønn" options={["Mann", "Kvinne", "Annet"]}/>
|
2023-12-12 19:40:39 +01:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<div class="flex justify-center items-center gap-8 text-primary font-bold">
|
2023-12-21 19:31:14 +01:00
|
|
|
<ButtonComponent text="Start undersøkelse" url="/form" filled={true} onclick={() => postFormData(age, education, healthcare_personnel, gender)} />
|
2023-12-12 19:40:39 +01:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<style lang="postcss">
|
|
|
|
:root {
|
|
|
|
color: theme(colors.content);
|
|
|
|
|
|
|
|
}
|
|
|
|
li {
|
|
|
|
list-style-type: disc;
|
|
|
|
margin-left: 2rem;
|
|
|
|
font-size: large;
|
|
|
|
}
|
|
|
|
p {
|
|
|
|
font-size: large;
|
|
|
|
}
|
|
|
|
</style>
|