Skip to content

Instantly share code, notes, and snippets.

View thisisrexa's full-sized avatar

Rexa thisisrexa

View GitHub Profile
@salcode
salcode / .gitignore
Last active May 15, 2024 09:00
.gitignore file for a general web project - Bare Minimum Git
# -----------------------------------------------------------------
# .gitignore
# Bare Minimum Git
# https://salferrarello.com/starter-gitignore-file/
# ver 20221125
#
# From the root of your project run
# curl -O https://gist.githubusercontent.com/salcode/10017553/raw/.gitignore
# to download this file
#
@niksumeiko
niksumeiko / disable-html-form-input-autocomplete-autofill.md
Last active May 11, 2024 09:53
Disable HTML form input autocomplete and autofill

Disable HTML Form Input Autocomplete and Autofill

  1. Add autocomplete="off" onto <form> element;
  2. Add hidden <input> with autocomplete="false" as a first children element of the form.
<form autocomplete="off" method="post" action="">
    <input autocomplete="false" name="hidden" type="text" style="display:none;">
    ...