Untitled
unknown
plain_text
2 years ago
2.0 kB
6
Indexable
<!DOCTYPE html> <html> <head> <meta name="viewport" content="width=device-width, initial-scale=1"> <style> body {font-family: Arial, Helvetica, sans-serif;} * {box-sizing: border-box;} .open-button { background-color: #cab02e; color: white; padding: 16px 20px; border: none; cursor: pointer; opacity: 0.8; position: fixed; bottom: 23px; right: 28px; width: 280px; } .form-popup { display: none; position: fixed; bottom: 0; right: 15px; border: 3px solid #f1f1f1; z-index: 9; } .form-container { max-width: 300px; padding: 10px; background-color: white; } .form-container input[type=text], .form-container input[type=password] { width: 100%; padding: 15px; margin: 5px 0 22px 0; border: none; background: #f1f1f1; } .form-container input[type=text]:focus, .form-container input[type=password]:focus { background-color: #ddd; outline: none; } .form-container .btn { background-color: #cab02e; color: white; padding: 16px 20px; border: none; cursor: pointer; width: 100%; margin-bottom:10px; opacity: 0.8; } .form-container .cancel { background-color: red; } .form-container .btn:hover, .open-button:hover { opacity: 1; } </style> </head> <body> <button class="open-button" onclick="openForm()">Jetzt Bewerben</button> <div class="form-popup" id="myForm"> <form action="/action_page.php" class="form-container"> <h1>Bewerben</h1><p>Jetzt schnell bewerben</p> <input type="text" placeholder="Vorname" name="email" required> <input type="text" placeholder="Nachname" name="email" required> <input type="text" placeholder="Email" name="email" required> <button type="submit" class="btn">Jetzt Bewerben</button> <button type="button" class="btn cancel" onclick="closeForm()">Schließen</button> </form> </div> <script> function openForm() { document.getElementById("myForm").style.display = "block"; } function closeForm() { document.getElementById("myForm").style.display = "none"; } </script> </body> </html>
Editor is loading...
Leave a Comment