Offers page ready
This commit is contained in:
@@ -161,11 +161,6 @@
|
||||
<header class="top-banner dark-theme">
|
||||
<div class="top-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">
|
||||
<img src="../images/logo/logo-01-complete.png" alt="Profice Logo" class="logo">
|
||||
</a>
|
||||
@@ -262,10 +257,7 @@
|
||||
<label for="service">Gewünschte Dienstleistung *</label>
|
||||
<select id="service" name="service" required>
|
||||
<option value="" disabled selected>Bitte wählen...</option>
|
||||
<option value="website">Website</option>
|
||||
<option value="ki-integration">KI Integration</option>
|
||||
<option value="automatisation">Automatisation</option>
|
||||
<option value="unabhaengige-wahl">Unabhängige Wahl</option>
|
||||
<option value="google-feed">Google Feed</option>
|
||||
</select>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
@@ -357,6 +349,26 @@
|
||||
</div>
|
||||
</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 -->
|
||||
<script src="../scripts/hex-background.js?v=20260304" defer></script>
|
||||
<script src="../scripts/script.js?v=20260323" defer></script>
|
||||
|
||||
Reference in New Issue
Block a user