🐻❄️
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<div class="relative"> | |
<!-- « autocomple » n'existe pas comme attribut sur l'element <input> en HTML --> | |
<!-- Cf : https://developer.mozilla.org/en-US/docs/Web/HTML/Element/input#attr-autocomplete --> | |
<input id="js_booking_card_cvv" maxlength="4" placeholder="•••" autocomple="off" data-help="cvv" size="4" name="booking[card_cvv]" type="text"> | |
<i class="ico_info_grey info_cvv_ico js_cvv_ico" data-help="cvv"></i> | |
</div> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
### Keybase proof | |
I hereby claim: | |
* I am paulrbr on github. | |
* I am paulrbr (https://keybase.io/paulrbr) on keybase. | |
* I have a public key whose fingerprint is 9E07 F241 5AC4 262B 661C FA84 DE33 1B23 748D 3A27 | |
To claim this, I am signing this object: |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const https = require('https'), | |
httpProxy = require('http-proxy'), | |
path = require('path'), | |
fs = require('fs'); | |
// Create a proxy server with custom application logic | |
const proxy = httpProxy.createProxyServer({}); | |
// To modify the proxy connection before data is sent, you can listen | |
// for the 'proxyReq' event. When the event is fired, you will receive |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const https = require('https'), | |
httpProxy = require('http-proxy'), | |
path = require('path'), | |
fs = require('fs'), | |
connect = require('connect'), | |
harmon = require('harmon'); | |
// Create a proxy server with custom application logic | |
const proxy = httpProxy.createProxyServer({}); |
OlderNewer