Offers page ready

This commit is contained in:
2026-03-23 12:45:23 +01:00
parent c709b025c0
commit 9315cc6743

View File

@@ -161,11 +161,6 @@
<header class="top-banner dark-theme"> <header class="top-banner dark-theme">
<div class="top-banner-left"> <div class="top-banner-left">
<div class="banner-left"> <div class="banner-left">
<button class="menu-toggle" id="menuToggle" aria-label="Menü">
<span></span>
<span></span>
<span></span>
</button>
<a href="../index.html" class="logo-link"> <a href="../index.html" class="logo-link">
<img src="../images/logo/logo-01-complete.png" alt="Profice Logo" class="logo"> <img src="../images/logo/logo-01-complete.png" alt="Profice Logo" class="logo">
</a> </a>
@@ -262,10 +257,7 @@
<label for="service">Gewünschte Dienstleistung *</label> <label for="service">Gewünschte Dienstleistung *</label>
<select id="service" name="service" required> <select id="service" name="service" required>
<option value="" disabled selected>Bitte wählen...</option> <option value="" disabled selected>Bitte wählen...</option>
<option value="website">Website</option> <option value="google-feed">Google Feed</option>
<option value="ki-integration">KI Integration</option>
<option value="automatisation">Automatisation</option>
<option value="unabhaengige-wahl">Unabhängige Wahl</option>
</select> </select>
</div> </div>
<div class="form-group"> <div class="form-group">
@@ -357,6 +349,26 @@
</div> </div>
</footer> </footer>
<script>
document.getElementById('phone').addEventListener('input', function() {
var pos = this.selectionStart;
var before = this.value;
this.value = this.value.replace(/[^+\d ]/g, '');
if (before !== this.value) {
this.selectionStart = this.selectionEnd = pos - (before.length - this.value.length);
}
});
document.getElementById('budget').addEventListener('input', function() {
var pos = this.selectionStart;
var before = this.value;
this.value = this.value.replace(/[^\d,.\- ]/g, '');
if (before !== this.value) {
this.selectionStart = this.selectionEnd = pos - (before.length - this.value.length);
}
});
</script>
<!-- Optimized script loading --> <!-- Optimized script loading -->
<script src="../scripts/hex-background.js?v=20260304" defer></script> <script src="../scripts/hex-background.js?v=20260304" defer></script>
<script src="../scripts/script.js?v=20260323" defer></script> <script src="../scripts/script.js?v=20260323" defer></script>