Updated to latest framework message username

addresses conflicts
This commit is contained in:
Cody
2020-06-05 17:57:25 -07:00
committed by GitHub
parent f854b948ce
commit af1aab5b8d

View File

@ -11,18 +11,23 @@
<td> <td>
<label class="control-label">@title: </label> <label class="control-label">@title: </label>
</td> </td>
@if (title == "From")
{
<td>
<input class="form-control" @bind="@username" readonly />
</td>
}
@if (title == "To")
{
<td> <td>
<input class="form-control" @bind="@username" /> <input class="form-control" @bind="@username" />
</td> </td>
}
</tr> </tr>
<tr> <tr>
<td> <td>
<label class="control-label">Subject: </label> <label class="control-label">Subject: </label>
</td> </td>
<td>
<input class="form-control" @bind="@subject" />
</td>
</tr>
@if (title == "From") @if (title == "From")
{ {
<td> <td>
@ -34,8 +39,8 @@
<td> <td>
<input class="form-control" @bind="@subject" /> <input class="form-control" @bind="@subject" />
</td> </td>
</tr>} }
</tr>
@if (title == "From") @if (title == "From")
{ {
<tr> <tr>
@ -71,6 +76,7 @@
} }
</table> </table>
@if (reply != string.Empty) @if (reply != string.Empty)
{ {
<button type="button" class="btn btn-primary" @onclick="Send">Send</button> } <button type="button" class="btn btn-primary" @onclick="Send">Send</button> }
@ -207,5 +213,5 @@
AddModuleMessage("Error Adding Notification", MessageType.Error); AddModuleMessage("Error Adding Notification", MessageType.Error);
} }
} }
} }