| Server IP : 35.236.43.222 / Your IP : 216.73.216.143 Web Server : Apache System : Linux order-form-vm-001 5.10.0-37-cloud-amd64 #1 SMP Debian 5.10.247-1 (2025-12-11) x86_64 User : deploy ( 1002) PHP Version : 8.1.31 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : OFF Directory : /var/www/mastersystem.app/public/wp-content/themes/mastersystem-theme/ |
Upload File : |
<!DOCTYPE html>
<html <?php language_attributes(); ?>>
<head>
<meta charset="<?php bloginfo('charset'); ?>">
<meta name="viewport" content="width=device-width, initial-scale=1">
<?php wp_head(); ?>
<style>
:root {
color-scheme: light;
}
body {
margin: 0;
background: #ffffff;
color: #000000;
font-family: "Georgia", "Times New Roman", serif;
}
.ms-wrap {
min-height: 100vh;
display: flex;
align-items: center;
justify-content: center;
padding: 64px 24px;
text-align: center;
}
.ms-inner {
max-width: 720px;
width: 100%;
}
.ms-title {
margin: 0 0 16px;
font-size: 56px;
line-height: 1.1;
font-weight: 600;
}
.ms-desc {
margin: 0 0 24px;
font-size: 18px;
line-height: 1.6;
}
.ms-invite {
margin: 0 0 16px;
font-size: 16px;
}
.ms-form {
display: flex;
justify-content: center;
}
.ms-form .mailpoet_form {
margin: 0;
}
.ms-form .mailpoet_form * {
box-sizing: border-box;
}
.ms-form .mailpoet_form_column {
display: flex;
flex-wrap: wrap;
gap: 12px;
justify-content: center;
align-items: flex-end;
}
.ms-form .mailpoet_column_with_background {
padding: 10px;
}
.ms-form .mailpoet_form_column:not(:first-child) {
margin-left: 20px;
}
.ms-form .mailpoet_paragraph {
line-height: 20px;
margin-bottom: 20px;
}
.ms-form .mailpoet_segment_label,
.ms-form .mailpoet_text_label,
.ms-form .mailpoet_textarea_label,
.ms-form .mailpoet_select_label,
.ms-form .mailpoet_radio_label,
.ms-form .mailpoet_checkbox_label,
.ms-form .mailpoet_list_label,
.ms-form .mailpoet_date_label {
display: block;
font-weight: normal;
}
.ms-form .mailpoet_text,
.ms-form .mailpoet_textarea,
.ms-form .mailpoet_select,
.ms-form .mailpoet_date_month,
.ms-form .mailpoet_date_day,
.ms-form .mailpoet_date_year,
.ms-form .mailpoet_date {
display: block;
padding: 12px 14px;
font-size: 16px;
border: 1px solid #000000;
background: #ffffff;
color: #000000;
}
.ms-form .mailpoet_text,
.ms-form .mailpoet_textarea {
width: 260px;
}
.ms-form .mailpoet_submit {
padding: 12px 18px;
font-size: 16px;
border: 1px solid #000000;
background: #ffffff;
color: #000000;
cursor: pointer;
}
.ms-form .mailpoet_divider {
}
.ms-form .mailpoet_message {
text-align: center;
}
.ms-form .mailpoet_form_loading {
width: 30px;
text-align: center;
line-height: normal;
}
.ms-form .mailpoet_form_loading > span {
width: 5px;
height: 5px;
background-color: #5b5b5b;
}
@media (max-width: 640px) {
.ms-title {
font-size: 40px;
}
.ms-form {
flex-direction: column;
}
.ms-input,
.ms-button {
width: 100%;
}
}
</style>
</head>
<body <?php body_class(); ?>>
<main class="ms-wrap">
<div class="ms-inner">
<h1 class="ms-title"><?php bloginfo('name'); ?></h1>
<p class="ms-desc"><?php bloginfo('description'); ?></p>
<p class="ms-invite">Subscribe to get launch updates for the MasterSystem beta.</p>
<div class="ms-form">
<?php
$form_widget = new \MailPoet\Form\Widget();
echo $form_widget->widget(array('form' => 1, 'form_type' => 'php'));
?>
</div>
</div>
</main>
<?php wp_footer(); ?>
</body>
</html>