-
Notifications
You must be signed in to change notification settings - Fork 0
/
account.html
58 lines (57 loc) · 3.91 KB
/
account.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" type="text/css" href="style.css" />
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/css/bootstrap.min.css" integrity="sha384-JcKb8q3iqJ61gNV9KGb8thSsNjpSL0n8PARn9HuZOnIxN0hoP+VmmDGMN5t9UJ0Z" crossorigin="anonymous">
<link href="https://fonts.googleapis.com/css2?family=Roboto:wght@500&display=swap" rel="stylesheet">
<script src="https://kit.fontawesome.com/5897268a0d.js" crossorigin="anonymous"></script>
<title>Profile</title>
</head>
<body>
<!-- <div class="bg-img"> </div> -->
<video autoplay muted loop class="bg-img">
<source src="resources/bgVid.mp4" type="video/mp4">
</video>
<div class="body-container">
<div class="sidebar">
<center class="mb-5">
<img src="./resources/calm-logo.png" class="img-fluid" alt="" id="logo">
</center>
<a class="text-decoration-none " href="dashboard.html"><span class="pl-3"></span><span class="border border-white rounded-circle p-1"><i class="fas fa-home p-1"></i></span><span class="ml-2">Home</span></a>
<a class="text-decoration-none" href="meditate.html"><span class="pl-3"></span><span class="border border-white rounded-circle p-1"><i class="fas fa-circle-notch p-1"></i></span><span class="ml-2">Meditate</span></a>
<a class="text-decoration-none" href="body.html"><span class="pl-3"></span><span class="border border-white rounded-circle p-1"><i class="fas fa-walking p-1"></i></span><span class="ml-2">Body</span></a>
<a class="text-decoration-none" href="scenes.html"><span class="pl-3"></span><span class="border border-white rounded-circle p-1"><i class="fas fa-tree p-1"></i></span><span class="ml-2">Scene</span></a>
<a class="text-decoration-none" href="profile.html"><span class="pl-3"></span><span class="border border-white rounded-circle p-1"><i class="far fa-user-circle p-1"></i></span><span class="ml-2">Profile</span></a>
</div>
<div class="container" id="mainTab">
<div class="row">
<div class="col-6 offset-6 text-white">
<div class="mt-3">
<h1 class="font-weight-bold text-white text-center">Account Detail</h1>
<div class="card h-100 my-3" id="profileCard">
<div class="card-body">
<div class="row">
<div class="col-10 py-3" id="parent">
<label for="" class="text-white" id="child">First Name</label>
<div class="input-group input-group-lg my-4 mx-4 pl-4">
<input type="text" class="form-control" id="updateName" aria-label="Sizing example input" aria-describedby="inputGroup-sizing-lg">
</div>
<label class="text-white" id="child2">Email</label>
<div class="input-group input-group-lg my-4 mx-4 pl-4">
<input type="text" class="form-control" id="updateEmail" aria-label="Sizing example input" aria-describedby="inputGroup-sizing-lg">
</div>
<button class="btn btn-secondary btn-block rounded-pill my-4 ml-5 pl-3 py-2" id="updateDetail" style="margin-left: 36px !important;">Update</button>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<script type="text/javascript" src="account.js"></script>
</body>
</html>