225 lines
6.1 KiB
HTML
225 lines
6.1 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>SFA Tool - Profile Settings</title>
|
|
<style>
|
|
* {
|
|
margin: 0;
|
|
padding: 0;
|
|
box-sizing: border-box;
|
|
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
|
|
}
|
|
|
|
body {
|
|
background-color: #f5f5f5;
|
|
color: #333;
|
|
line-height: 1.6;
|
|
}
|
|
|
|
.container {
|
|
max-width: 1200px;
|
|
margin: 0 auto;
|
|
padding: 0.5rem 1rem;
|
|
}
|
|
|
|
header {
|
|
background-color: #2c3e50;
|
|
color: white;
|
|
padding: 0.5rem 0;
|
|
}
|
|
|
|
.header-content {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
}
|
|
|
|
h1 {
|
|
font-size: 1.25rem;
|
|
font-weight: 500;
|
|
}
|
|
|
|
nav {
|
|
display: flex;
|
|
gap: 1.5rem;
|
|
}
|
|
|
|
nav a {
|
|
color: white;
|
|
text-decoration: none;
|
|
padding: 0.25rem 0.75rem;
|
|
border-radius: 4px;
|
|
transition: background-color 0.2s;
|
|
font-size: 0.9rem;
|
|
}
|
|
|
|
nav a:hover {
|
|
background-color: rgba(255, 255, 255, 0.1);
|
|
}
|
|
|
|
nav a.active {
|
|
background-color: rgba(255, 255, 255, 0.2);
|
|
font-weight: 500;
|
|
}
|
|
|
|
.content {
|
|
background-color: #fff;
|
|
padding: 2rem;
|
|
border-radius: 8px;
|
|
box-shadow: 0 2px 4px rgba(0,0,0,0.1);
|
|
margin-top: 1.5rem;
|
|
}
|
|
|
|
.profile-section {
|
|
max-width: 600px;
|
|
margin: 0 auto;
|
|
}
|
|
|
|
.profile-header {
|
|
margin-bottom: 2rem;
|
|
text-align: center;
|
|
}
|
|
|
|
.profile-avatar {
|
|
width: 100px;
|
|
height: 100px;
|
|
border-radius: 50%;
|
|
background-color: #e0e0e0;
|
|
margin: 0 auto 1rem;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
font-size: 2rem;
|
|
color: #666;
|
|
}
|
|
|
|
.form-group {
|
|
margin-bottom: 1.5rem;
|
|
}
|
|
|
|
.form-group label {
|
|
display: block;
|
|
margin-bottom: 0.5rem;
|
|
font-weight: 500;
|
|
}
|
|
|
|
.form-group input,
|
|
.form-group select {
|
|
width: 100%;
|
|
padding: 0.5rem;
|
|
border: 1px solid #ddd;
|
|
border-radius: 4px;
|
|
font-size: 1rem;
|
|
}
|
|
|
|
.form-group input:focus,
|
|
.form-group select:focus {
|
|
outline: none;
|
|
border-color: #2c3e50;
|
|
}
|
|
|
|
.save-button {
|
|
padding: 0.75rem 1.5rem;
|
|
background: #2c3e50;
|
|
color: white;
|
|
border: none;
|
|
border-radius: 4px;
|
|
cursor: pointer;
|
|
font-size: 1rem;
|
|
width: 100%;
|
|
}
|
|
|
|
.save-button:hover {
|
|
background: #34495e;
|
|
}
|
|
|
|
.notification-settings {
|
|
margin-top: 2rem;
|
|
padding-top: 2rem;
|
|
border-top: 1px solid #eee;
|
|
}
|
|
|
|
.notification-option {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
margin-bottom: 1rem;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<header>
|
|
<div class="container">
|
|
<div class="header-content">
|
|
<h1>SFA Tool</h1>
|
|
<nav>
|
|
<a href="index.html">Renewals</a>
|
|
<a href="threads.html">Threads</a>
|
|
<a href="profile.html" class="active">Profile Settings</a>
|
|
</nav>
|
|
</div>
|
|
</div>
|
|
</header>
|
|
|
|
<main class="container">
|
|
<div class="content">
|
|
<div class="profile-section">
|
|
<div class="profile-header">
|
|
<div class="profile-avatar">JD</div>
|
|
<h2>Profile Settings</h2>
|
|
</div>
|
|
|
|
<form>
|
|
<div class="form-group">
|
|
<label for="name">Full Name</label>
|
|
<input type="text" id="name" value="John Doe">
|
|
</div>
|
|
|
|
<div class="form-group">
|
|
<label for="email">Email</label>
|
|
<input type="email" id="email" value="john.doe@company.com">
|
|
</div>
|
|
|
|
<div class="form-group">
|
|
<label for="role">Role</label>
|
|
<select id="role">
|
|
<option>Sales Representative</option>
|
|
<option>Sales Manager</option>
|
|
<option>Team Lead</option>
|
|
</select>
|
|
</div>
|
|
|
|
<div class="form-group">
|
|
<label for="timezone">Timezone</label>
|
|
<select id="timezone">
|
|
<option>UTC-8 (Pacific Time)</option>
|
|
<option>UTC-5 (Eastern Time)</option>
|
|
<option>UTC+0 (GMT)</option>
|
|
</select>
|
|
</div>
|
|
|
|
<button type="submit" class="save-button">Save Changes</button>
|
|
</form>
|
|
|
|
<div class="notification-settings">
|
|
<h3>Notification Preferences</h3>
|
|
<div class="notification-option">
|
|
<span>Email Notifications</span>
|
|
<input type="checkbox" checked>
|
|
</div>
|
|
<div class="notification-option">
|
|
<span>Task Reminders</span>
|
|
<input type="checkbox" checked>
|
|
</div>
|
|
<div class="notification-option">
|
|
<span>Thread Updates</span>
|
|
<input type="checkbox" checked>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</main>
|
|
</body>
|
|
</html> |