19 lines
500 B
HTML
19 lines
500 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Accounts</title>
|
|
</head>
|
|
<body>
|
|
<h1>Welcome, {{ current_user.data.givenName }}</h1>
|
|
<h2>Email: {{ current_user.data.mail }}</h2>
|
|
<h2>{{ current_user.dn }}</h2>
|
|
<a href="{{ mfaurl }}">
|
|
<button>MFA</button>
|
|
</a>
|
|
<a href="http://accounts.bbrunson.com">
|
|
<button>Change Password</button>
|
|
</a>
|
|
</body>
|
|
</html> |