Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
freebsd
GitHub Repository: freebsd/phabricator
Path: blob/master/src/applications/legalpad/controller/LegalpadDocumentDoneController.php
13459 views
1
<?php
2
3
final class LegalpadDocumentDoneController extends LegalpadController {
4
5
public function shouldAllowPublic() {
6
return true;
7
}
8
9
public function handleRequest(AphrontRequest $request) {
10
$viewer = $request->getViewer();
11
12
return $this->newDialog()
13
->setTitle(pht('Verify Signature'))
14
->appendParagraph(
15
pht(
16
'Thank you for signing this document. Please check your email '.
17
'to verify your signature and complete the process.'))
18
->addCancelButton('/', pht('Okay'));
19
}
20
21
}
22
23