16 lines
516 B
JavaScript
16 lines
516 B
JavaScript
import React from 'react'
|
|
import LoginForm from '../components/LoginForm.jsx'
|
|
|
|
export default function LoginModule() {
|
|
return (
|
|
<div className="d-flex flex-column">
|
|
<div className="d-flex flex-column align-items-center justify-content-center p-2">
|
|
<div className="d-flex align-items-center justify-content-center p-2">
|
|
<h1 className="p-2">Nexus Team Portal</h1>
|
|
</div>
|
|
<LoginForm/>
|
|
</div>
|
|
</div>
|
|
)
|
|
}
|