-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtab_profile.html
64 lines (57 loc) · 2.75 KB
/
tab_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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet"
integrity="sha384-T3c6CoIi6uLrA9TneNEoa7RxnatzjcDSCmG1MXxSR1GAsXEV/Dwwykc2MPK8M2HN" crossorigin="anonymous">
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js"
integrity="sha384-C6RzsynM9kWDrMNeT87bh95OGNyZPhcTNXj1NW7RuBCsyN/o0jlpcV8Qyq46cDfL"
crossorigin="anonymous"></script>
<title>Profile</title>
<link rel="stylesheet" href="./css/tab_profile_styles.css">
<script type="module" src="./firebase.js"></script>
</head>
<body>
<div class="nav_container">
<header
class="d-flex flex-wrap align-items-center justify-content-center justify-content-md-between py-3 mb-4 border-bottom">
<ul class="nav nav-tabs">
<li><a href="index_applicant.html" class="nav-link px-2">Home</a></li>
<li><a href="tab_company.html" class="nav-link px-2">Companies</a></li>
<li><a href="tab_profile.html" class="nav-link px-2 link-secondary">Profile</a></li>
</ul>
<div class="col-md-3 text-end">
<button type="button" class="btn btn-outline-primary">Log out</button>
</div>
</header>
</div>
<main class="bd-content order-1 py-5" id="content">
<div class="container bd-gutter container-xxl">
<div>
<h2>Username: <span id="username">csmith24</span></h2>
</div>
<div>
<h2>User Information</h2>
<p><strong>Name:</strong> <span id="name">Connor Smith</span></p>
<p><strong>Email:</strong> <span id="email">[email protected]</span></p>
<p><strong>Phone Number:</strong> <span id="phone">3196674023</span></p>
<p><strong>Location:</strong> <span id="location">Ames, IA</span></p>
<p><strong>School:</strong> <span id="school">Iowa State</span></p>
<p><strong>Major:</strong> <span id="major">Agriculture Engineering</span></p>
<p><strong>Graduation year:</strong> <span id="gradYear">2025</span></p>
</div>
<div>
<h2>Upload Resume</h2>
<label for="resume">Choose a resume:</label>
<input type="file" id="resume" accept=".pdf,.doc,.docx">
<button class="button" onclick="uploadResume()">Upload Resume</button>
<p id="uploadStatus"></p>
</div>
<div>
<h2></h2>
</div>
</div>
</main>
</body>
</html>