24 lines
625 B
JavaScript
24 lines
625 B
JavaScript
// internal
|
|
import BasePage from "../base.js";
|
|
// vendor
|
|
import { Altcha } from "../../vendor/altcha.js";
|
|
|
|
export default class PageApplyFoundingPartner extends BasePage {
|
|
static hash = hashPageApplyFoundingPartner;
|
|
|
|
constructor(router) {
|
|
super(router);
|
|
}
|
|
|
|
initialize() {
|
|
this.sharedInitialize();
|
|
this.hookupButtonSubmitFormApplyFoundingPartnerUs();
|
|
}
|
|
|
|
hookupButtonSubmitFormApplyFoundingPartnerUs() {
|
|
const button = document.querySelector('form input[type="submit"]');
|
|
button.classList.add(flagButton);
|
|
button.classList.add(flagButtonPrimary);
|
|
}
|
|
}
|