Feat(Project Hub): Apply for Founding Partner Program page created with database structure and methods.
This commit is contained in:
16
static/js/pages/core/apply-founding-partner-success.js
Normal file
16
static/js/pages/core/apply-founding-partner-success.js
Normal file
@@ -0,0 +1,16 @@
|
||||
// internal
|
||||
import BasePage from "../base.js";
|
||||
// vendor
|
||||
import { Altcha } from "../../vendor/altcha.js";
|
||||
|
||||
export default class PageApplyFoundingPartnerSuccess extends BasePage {
|
||||
static hash = hashPageApplyFoundingPartnerSuccess;
|
||||
|
||||
constructor(router) {
|
||||
super(router);
|
||||
}
|
||||
|
||||
initialize() {
|
||||
this.sharedInitialize();
|
||||
}
|
||||
}
|
||||
23
static/js/pages/core/apply-founding-partner.js
Normal file
23
static/js/pages/core/apply-founding-partner.js
Normal file
@@ -0,0 +1,23 @@
|
||||
// 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);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user