Add the "Request Manage Link" form to the manage pledge page

When a pledge is selected but the auth token is missing/incorrect, this will give a clear path for re-requesting a new valid manage link
This commit is contained in:
Kelly Dwan 2019-12-09 17:53:06 -05:00
parent d737f70a7e
commit 746de99787
No known key found for this signature in database
GPG key ID: 8BA5575F3D11575D
7 changed files with 111 additions and 66 deletions

View file

@ -29,6 +29,29 @@
border-bottom-color: $color-gray-light-400;
}
.pledge-dialog__close {
position: absolute;
top: 0;
right: 0;
padding: 10px;
text-decoration: none;
}
}
.pledge-dialog__background {
position: fixed;
z-index: 99;
top: 0;
left: 0;
bottom: 0;
right: 0;
&[hidden] {
display: none;
}
}
.pledge-email-form {
label {
display: inline-block;
margin-bottom: 4px;
@ -53,25 +76,4 @@
.notice p {
font-size: 1em;
}
.pledge-dialog__close {
position: absolute;
top: 0;
right: 0;
padding: 10px;
text-decoration: none;
}
}
.pledge-dialog__background {
position: fixed;
z-index: 99;
top: 0;
left: 0;
bottom: 0;
right: 0;
&[hidden] {
display: none;
}
}