60 lines
2.0 KiB
PHP
60 lines
2.0 KiB
PHP
<?php
|
|
/**
|
|
* @var string $content
|
|
*/
|
|
?>
|
|
<html>
|
|
<head>
|
|
<title>Form2</title>
|
|
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/css/bootstrap.min.css">
|
|
<style>
|
|
.inputForm {
|
|
color: RED;
|
|
margin: 10px;
|
|
}
|
|
|
|
.additional_email {
|
|
color: #2c35cc;
|
|
}
|
|
</style>
|
|
<script>
|
|
document.addEventListener('DOMContentLoaded', () => {
|
|
console.log('form ready');
|
|
});
|
|
</script>
|
|
</head>
|
|
<body>
|
|
<header class="p-3 bg-dark text-white">
|
|
<div class="container">
|
|
<div class="d-flex flex-wrap align-items-center justify-content-center justify-content-lg-start">
|
|
<a href="/" class="d-flex align-items-center mb-2 mb-lg-0 text-white text-decoration-none">
|
|
<svg class="bi me-2" width="40" height="32" role="img" aria-label="Bootstrap">
|
|
<use xlink:href="#bootstrap"></use>
|
|
</svg>
|
|
</a>
|
|
|
|
<ul class="nav col-12 col-lg-auto me-lg-auto mb-2 justify-content-center mb-md-0">
|
|
<li><a href="#" class="nav-link px-2 text-secondary">Home</a></li>
|
|
<li><a href="#" class="nav-link px-2 text-white">Features</a></li>
|
|
<li><a href="#" class="nav-link px-2 text-white">Pricing</a></li>
|
|
<li><a href="#" class="nav-link px-2 text-white">FAQs</a></li>
|
|
<li><a href="#" class="nav-link px-2 text-white">About</a></li>
|
|
</ul>
|
|
|
|
<form class="col-12 col-lg-auto mb-3 mb-lg-0 me-lg-3">
|
|
<input type="search" class="form-control form-control-dark" placeholder="Search..." aria-label="Search">
|
|
</form>
|
|
|
|
<div class="text-end">
|
|
<button type="button" class="btn btn-outline-light me-2">Login</button>
|
|
<button type="button" class="btn btn-warning">Sign-up</button>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</header>
|
|
<div class="container">
|
|
<?= $content ?>
|
|
</div>
|
|
|
|
</body>
|
|
</html>
|