-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmy_account.html
116 lines (103 loc) · 5.45 KB
/
my_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
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 http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Introvert Copilot</title>
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet"
integrity="sha384-aFq/bzH65dt+w6FI2ooMVUpc+21e0SRygnTpmBvdBgSdnuTN7QbdgL+OapgHtvPp" crossorigin="anonymous">
<link rel="stylesheet" href="style.css">
</head>
<body>
<!-- top nav bar -->
<div class="container">
<header class="d-flex flex-wrap justify-content-center py-3 mb-4 border-bottom">
<a href="./index.html"
class="d-flex align-items-center mb-3 mb-md-0 me-md-auto link-body-emphasis text-decoration-none">
<img src="image/Introvert copilot Logo smaller.png" alt="cropped logo" class="bi me-2" width="40"
height="32">
<span class="fs-4">Introvert Copilot</span>
</a>
<ul class="nav nav-pills">
<button class="btn" type="button" id="mymode">Dark mode
<img id="mymodepic" src="image/dark mode.svg" alt="open dark mode">
</button>
<li class="nav-item"><a href="./my_account.html" class="nav-link active" aria-current="page">My
Account</a></li>
</ul>
</header>
</div>
<main>
<div class="my-acc-wrapper">
<div class="menu">
<a href="#manage_account">Manage My Account</a>
<a href="#context_management">Context Management</a>
<a href="#customize_model">Customize Model</a>
<a href="#payment_info">Payment Information</a>
<a href="#saved_sparks">Saved Sparks</a>
</div>
<div class="my-acc-right-column">
<section id="manage_account">
<p class="char-item">Manage My Account</p>
<form>
<label for="account_name">Account name: </label>
<input type="text" name="account_name" value="programthink" disabled><br>
<label for="email_address">Email address: </label>
<input type="text" name="email_address" value="[email protected]" disabled><br>
<label for="current_plan">Current plan: </label>
<input type="text" name="current_plan" value="Premium" disabled><br>
<label for="email_setting">Email setting: </label>
<input type="text" name="email_setting" value="Send me every morning from Monday to Friday"
disabled>
</form>
</section>
<section id="context_management">
<p class="char-item">Context Management</p>
<form>
<label for="default_context">Default context: </label>
<input type="text" name="default_context" value="Casual talk" disabled><br>
<label for="tone">Tone preference: </label>
<input type="text" name="tone" value="Friendly" disabled><br>
</form>
</section>
<section id="customize_model">
<p class="char-item">Customize the chat model</p>
<form>
<label for="temperature">Temperature: </label>
<input type="text" name="temperature" value="0.9" disabled><br>
<label for="restriction_size">Restriction size: </label>
<input type="text" name="restriction_size" value="5" disabled><br>
</form>
</section>
<section id="payment_info">
<p class="char-item">Manage My Payment Information</p>
<form id="payment_form">
<label for="credit_card">Credit card number: </label>
<input type="text" name="credit_card" value="********9999" disabled><br>
<button class="w-100 btn btn-primary char-right-btn" type="button" id="payment_edit">Edit my
payment infomation</button>
<button class="w-100 btn btn-primary char-right-btn hidden" type="submit" id="save_payment_edit">Save</button>
</form><br>
</section>
<section id="saved_sparks">
<p class="char-item">Read my Saved Sparks here</p>
<div id="content"></div>
</section>
<div id="saved_msg"></div>
</div>
</div>
</main>
<footer>
<img id="wavepic" src="image/wave.png" alt="wave in theme color">
</footer>
<!-- popper and js integration of bootstrap -->
<script src="https://cdn.jsdelivr.net/npm/@popperjs/[email protected]/dist/umd/popper.min.js"
integrity="sha384-oBqDVmMz9ATKxIep9tiCxS/Z9fNfEXiDAYTujMAeBAsjFuCZSmKbSSUnQlmh/jp3"
crossorigin="anonymous"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.min.js"
integrity="sha384-heAjqF+bCxXpCWLa6Zhcp4fu20XoNIA98ecBC1YkdXhszjoejr5y9Q77hIrv8R9i"
crossorigin="anonymous"></script>
<script src="my_account.js"></script>
</body>
</html>