-
Notifications
You must be signed in to change notification settings - Fork 0
/
MyAccount.html
59 lines (49 loc) · 1.82 KB
/
MyAccount.html
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
<!DOCTYPE html>
<html lang="en">
<body style="background-color:#EBEBEB;">
<header>
<div class="navigation">
<nav class="menu">
<h1 style="background-color:#000628;color:white">Investio.ai</h1>
<a class="navigation__link" href="home.html">Home</a>
<a class="navigation__link" href="startups.html">Startups</a>
<a class="navigation__link" href="investors.html"
>Investors</a
>
<a class="navigation__link" href="myaccount.html">My Account</a>
</nav>
</div>
</header>
<main>
<section class="Create Account">
<h1>Create an Account Below!</h1>
<form class="form">
<fieldset>
<div class="fields-container">
<div class="fields">
<label>Full Name</label>
<input class="input-text" type="text" placeholder="Full Name" />
</div>
<div class="fields">
<label>Email</label>
<input class="input-text" type="email" placeholder="Email" />
</div>
<div class="fields">
<label>Position</label>
<input class="input-text" type="text" placeholder="Investor, Startup, etc." />
</div>
<p></p>
<div class="align-right flex">
<button class="button w-100" type="submit">Make Account</button>
</div>
</fieldset>
</form>
</section>
</main>
<footer>
<p style="background-color:#000628;color:white">
©2022 Investio.ai. All rights reserved.
</p>
</footer>
</body>
</html>