1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
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
|
<!DOCTYPE html> <html lang="en">
<head> <title>FLORA HOUSE</title> <!-- css --> <?php include 'inc/headlinks.php';?> <meta name="keywords" content="FLORA HOUSE"> <meta name="description" content="Green is More Than a Colour"> <!-- js --> <?php include 'inc/link-js.php';?> </head>
<body>
<!-- header -->
<div class="subPageMenu">
<?php include 'inc/navbar.php';?> </div> <!-- end of header--> <section class="mainWarp registerBg" >
<div class="row normalPaddingV"> <div class="col-lg-5">
<p class="greenFont bigbiggerester Roman">Log in to your account.</p> <p class="greenFont"><span class="mr-4">Don't have an account?</span> <a href="register.php" class="lightGreenFont">Create one</a></p>
</div> <div class="col-lg-7"> <div class="rgWrap"> <div class="form-group"> <label for="Email" class="greenFont">Email</label> <input type="email" class="form-control" id="Email" aria-describedby="Email" placeholder="">
</div> <div class="form-group"> <label for="Password">Password</label> <input type="password" class="form-control" id="Password" placeholder=""> </div> <div class="mb-4"> <a href="#" class="lightGreenFont d-inline-block pb-4">Forget your password?</a> </div> <a href="#" class="d-inline-block yellowBtn pt-4">Login</a> </div> </div>
</div>
</section>
<?php include 'inc/subscribe.php';?>
<!-- end #section -->
<!-- footer --> <?php include 'inc/footer.php';?>
</body>
</html>
|