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.
|
|
|
|
|
|
|
|
.authorization
|
2021-02-28 21:36:11 +00:00
|
|
|
form(method="post", action="authorize/decline")
|
2021-02-23 19:20:16 +00:00
|
|
|
button(type="submit", class="red") Decline
|
|
|
|
|
2021-02-28 21:36:11 +00:00
|
|
|
form(method="post", action="authorize/approve")
|
2021-02-23 19:20:16 +00:00
|
|
|
button(type="submit", class="green") Approve
|
|
|
|
|