View file File name : index.html Content :<!doctype html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0"> <meta http-equiv="X-UA-Compatible" content="ie=edge"> <title>Sign in </title> <link rel="stylesheet" href="style.css"> </head> <body> <main> <section class="sign-in"> <div class="sign-in_left-side"> <div class="sign-in_picture"> <img src="./assets/img/sign-in.jpg" alt="img"> </div> </div> <div class="sign-in_right-side"> <header class="header"> <div class="header_container"> <div class="header_logo"> <a href="#"> <img src="./assets/img/logo.svg" alt="img"> </a> </div> <div class="header_sign-in"> <span>Don’t have an account?</span> <a href="#">Sign up</a> </div> </div> </header> <div class="sign-in_form"> <div class="sign-in_icon"> <img src="./assets/img/icons/sign-in.svg" alt="img"> </div> <h2>Sign in to your account</h2> <form action="#"> <div class="field field--label"> <input id="email" name="email" type="email"> <label for="email">Email or Phone Number</label> </div> <div class="field field--label sign-in_password"> <input id="password" name="password" type="password"> <label for="password">Password</label> <div class="show-password"></div> </div> <button class="btn">Sign in</button> <a href="#">Forgot your password?</a> </form> <div class="sign-in_application"> <a href="#">Continue your application <img src="./assets/img/icons/arrow-left.svg" alt=""></a> </div> </div> <div class="sign-in_text"> <p> Risk Warning: CFDs are complex instruments and come with a high risk of losing money rapidly due to leverage. The vast majority of retail client accounts lose money when trading in CFDs. Before trading any products supplied by CAPITAL MARKETS ELITE GROUP (UK) LIMITED (including subsidiaries and affiliates), you should consider your financial condition, level of experience and risk appetite carefully. You are strongly advised to obtain independent financial, legal and tax advice before proceeding with any leveraged transaction. Nothing in this site should be read or construed as constituting advice on the part of CAPITAL MARKETS ELITE GROUP (UK) LIMITED or any of its affiliates, directors, officers or employees. </p> <p> Please read and understand the terms and conditions on CAPITAL MARKETS ELITE GROUP (UK) LIMITED <br>website before taking any further action. <br> Capital Markets Elite Group (UK) Limited, FCA License Number 583632, is authorised and regulated by the Financial Conduct Authority and registered under the laws of England and Wales, company number 07832612. Registered Office: 107 Cannon Street, 3rd Floor, London EC4N 5AF, United Kingdom. </p> <p>© Copyright 2022 Capital Markets Elite Group - All Rights Reserved</p> </div> </div> </section> </main> <script src="js/main.js"></script> </body> </html>