Skip to content

Instantly share code, notes, and snippets.

View renehesse's full-sized avatar

René Hesse renehesse

View GitHub Profile
<form action="https://formspree.io/deine@email.de" method="POST">
<input type="text" name="Name">
<textarea name="message" placeholder="Nachricht"></textarea>
<input type="email" name="_replyto">
<input type="submit" value="Senden">
</form>
@renehesse
renehesse / fritzpass.js
Last active July 29, 2020 15:08
Fritz!Box Passwort ausfüllen Bookmarklet
javascript: var auto = {
password: 'DEINPASSWORT',
fillerup: function() {
var all_inputs = document.getElementsByTagName('input');
for (var i = 0, max = all_inputs.length; i < max; i++) {
var inp = all_inputs[i];
var type = inp.getAttribute('type');
if (!type) {
type = 'text';
}