-
Notifications
You must be signed in to change notification settings - Fork 1
/
create-profile.html
116 lines (107 loc) · 4.61 KB
/
create-profile.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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<link href="https://fonts.googleapis.com/css?family=Raleway&display=swap" rel="stylesheet">
<script src="https://kit.fontawesome.com/b8ddf34b61.js"></script>
<link rel="stylesheet" href="file:///C:/Users/The%20Dark%20Pavilion/Desktop/learning-css3/font-icons/fontawesome-free-5.9.0-web/css/all.min.css">
<link rel="stylesheet" href="css/style.min.css">
<title>Sing In</title>
</head>
<body>
<nav class="navbar bg-dark">
<h1>
<a href="index.html">
<i class="fas fa-code"></i> Devconnector
</a>
</h1>
<ul>
<li><a href="profiles.html">Developers</a></li>
<li><a href="post.html">Post</a></li>
<li><a href="dashboard.html"><i class="fas fa-user"></i>
<span class="hide-sm">Dashboard</span></a></li>
<li><a href="login.html"><i class="fas fa-sign-out-alt"></i>
<span class="hide-sm">Log-out</span></a></li>
</ul>
</nav>
<section class="container">
<h1 class="large text-primary">
Create Your Profile
</h1>
<p class="lead"><i class="fas fa-user"></i> Let's get some information to make your profile stand out</p>
<small>* = required fields</small>
<form class="form">
<div class="form-groups">
<select name="status">
<option value="0">* Select Professional Status</option>
<option value="Developer">Developer</option>
<option value="Junior Developer">Junior Developer</option>
<option value="Senior Developer">Senior Developer</option>
<option value="Manager">Manager</option>
<option value="Student or Learning">Student or Learning</option>
<option value="Instructor">Instructor or Teacher</option>
<option value="Intern">Intern</option>
<option value="Other">Other</option>
</select>
<small class="form-text">Give us an idea of where you are at in your career</small>
</div>
<div class="form-groups">
<input type="text" placeholder="Company" name="company" />
<small class="form-text">Could be your own company or one you work for</small>
</div>
<div class="form-groups">
<input type="text" placeholder="Website" name="website" />
<small class="form-text">Could be your own or a company website</small>
</div>
<div class="form-groups">
<input type="text" placeholder="Location" name="location" />
<small class="form-text">City & state suggested (eg. Boston, MA)</small>
</div>
<div class="form-groups">
<input type="text" placeholder="* Skills" name="skills" />
<small class="form-text">Please use comma separated values (eg.
HTML,CSS,JavaScript,PHP)</small>
</div>
<div class="form-groups">
<input type="text" placeholder="Github Username" name="githubusername" />
<small class="form-text">If you want your latest repos and a Github link, include your
username</small>
</div>
<div class="form-groups">
<textarea placeholder="A short bio of yourself" name="bio"></textarea>
<small class="form-text">Tell us a little about yourself</small>
</div>
<div class="my-2">
<button type="button" class="btn btn-light">
Add Social Network Links
</button>
<span>Optional</span>
</div>
<div class="form-groups social-input">
<i class="fab fa-twitter fa-2x"></i>
<input type="text" placeholder="Twitter URL" name="twitter" />
</div>
<div class="form-groups social-input">
<i class="fab fa-facebook fa-2x"></i>
<input type="text" placeholder="Facebook URL" name="facebook" />
</div>
<div class="form-groups social-input">
<i class="fab fa-youtube fa-2x"></i>
<input type="text" placeholder="YouTube URL" name="youtube" />
</div>
<div class="form-groups social-input">
<i class="fab fa-linkedin fa-2x"></i>
<input type="text" placeholder="Linkedin URL" name="linkedin" />
</div>
<div class="form-groups social-input">
<i class="fab fa-instagram fa-2x"></i>
<input type="text" placeholder="Instagram URL" name="instagram" />
</div>
<input type="submit" class="btn btn-primary my-1" />
<a class="btn btn-light my-1" href="dashboard.html">Go Back</a>
</form>
</section>
</body>
</html>