This repository has been archived by the owner on Feb 5, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
c0ce6d1
commit 2ef664e
Showing
3 changed files
with
52 additions
and
51 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,11 @@ | ||
import {useRouter} from "next/router"; | ||
import React, {FormEvent, useState} from "react"; | ||
import { useRouter } from "next/router"; | ||
import React, { FormEvent, useState } from "react"; | ||
import BaseHeader from "@/components/header/baseHeader"; | ||
import styles from "@/styles/Login.module.css"; | ||
import Image from "next/image"; | ||
import filler_image from "@/public/filler_image.png"; | ||
import reset from "@/lib/reset"; | ||
import {Button} from "bootstrap"; | ||
import { Button } from "bootstrap"; | ||
|
||
export default function ResetPassword() { | ||
const router = useRouter(); | ||
|
@@ -28,20 +28,20 @@ export default function ResetPassword() { | |
|
||
return ( | ||
<> | ||
<BaseHeader/> | ||
<BaseHeader /> | ||
<div className="container py-5 h-100"> | ||
<div className="row d-flex justify-content-center align-items-center h-100"> | ||
<div className="col col-xl-10"> | ||
<div className="card"> | ||
<div className="row g-0"> | ||
<div className="col-md-6 col-lg-5 d-none d-md-block"> | ||
<Image src={filler_image} alt="My App Logo" className={styles.filler_image}/> | ||
<Image src={filler_image} alt="My App Logo" className={styles.filler_image} /> | ||
</div> | ||
<div className="col-md-6 col-lg-7 d-flex align-items-center"> | ||
<div className="card-body p-4 p-lg-5 text-black"> | ||
<form> | ||
<div className="d-flex align-items-center mb-3 pb-1"> | ||
<i className="fas fa-cubes fa-2x me-3"/> | ||
<i className="fas fa-cubes fa-2x me-3" /> | ||
<span className="h1 fw-bold mb-0">Wachtwoord vergeten.</span> | ||
</div> | ||
|
||
|
@@ -60,9 +60,7 @@ export default function ResetPassword() { | |
placeholder="[email protected]" | ||
/> | ||
</div> | ||
<button onClick={handleSubmit}> | ||
Reset | ||
</button> | ||
<button onClick={handleSubmit}>Reset</button> | ||
<p className="mb-5 pb-lg-2"> | ||
Geheugen opgefrist? <a href="/login">Ga naar login</a> | ||
</p> | ||
|