34 lines
834 B
Plaintext
34 lines
834 B
Plaintext
@page "/account_tasks"
|
|
|
|
<h3>AccountTasks</h3>
|
|
|
|
<body>
|
|
<div class="box-wrapper">
|
|
<div class="left-column">
|
|
<p>Assigned Company Names</p>
|
|
<input placeholder="Accounts Added" @bind="newAccount" />
|
|
<button @onclick="addAccount">Add Account</button>
|
|
<ul>
|
|
|
|
</ul>
|
|
</div>
|
|
<div class="middle-column">
|
|
<h3>Tasks</h3>
|
|
<ul>
|
|
|
|
</ul>
|
|
</div>
|
|
<div class="right-column">
|
|
<h3>Task Notes</h3>
|
|
</div>
|
|
</body>
|
|
|
|
@code {
|
|
private Dictionary<string, Dictionary<string, string>> accounts =
|
|
new Dictionary<string, Dictionary<string, string>>();
|
|
|
|
accounts.Add("Hubspot", default);
|
|
|
|
|
|
}
|