2021-02-23 19:20:16 +00:00
|
|
|
extends layout.pug
|
|
|
|
|
|
|
|
block title
|
|
|
|
| Authorize #{clientTitle}
|
|
|
|
|
|
|
|
block content
|
|
|
|
p.
|
|
|
|
You are about to confirm a login to client #[b= clientTitle]. You have 2
|
|
|
|
minutes time for your decision.
|
|
|
|
|
2021-05-01 13:47:22 +00:00
|
|
|
.ui.grid.two.columns
|
|
|
|
form.column(method="post", action="authorize/decline")
|
|
|
|
button.ui.button.fluid.red(type="submit", class="red") Decline
|
2021-02-23 19:20:16 +00:00
|
|
|
|
2021-05-01 13:47:22 +00:00
|
|
|
form.column(method="post", action="authorize/approve")
|
|
|
|
button.ui.button.fluid.green(type="submit", class="green") Approve
|
2021-02-23 19:20:16 +00:00
|
|
|
|