-
Notifications
You must be signed in to change notification settings - Fork 0
/
accountdetail.html
42 lines (40 loc) · 1014 Bytes
/
accountdetail.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Account Detail</title>
</head>
<body>
<style type="text/css">
table
{
font-family: "Lucida Sans Unicode", "Lucida Grande", Sans-Serif;
font-size: 12px;
margin: 45px;
text-align: left;
border-collapse: collapse;
}
th
{
padding: 8px 2px;
font-weight: normal;
font-size: 14px;
border-bottom: 2px solid #6678b1;
border-right: 30px solid #fff;
border-left: 30px solid #fff;
color: #039;
}
td
{
padding: 12px 2px 0px 2px;
border-right: 30px solid #fff;
border-left: 30px solid #fff;
color: #669;
}
</style>
Username = {{ .Username }}<br/>
Firstname = {{ .FirstName }}<br/>
Lastname = {{ .LastName }}<br/>
Email Address = {{ .Email }}<br/>
</body>
</html>