You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
28 lines
996 B
28 lines
996 B
{% include 'include/header.html' %}
|
|
<title> {{ account_info.1 }}'s Settings </title>
|
|
<script type="text/javascript">
|
|
$("document").ready(function() {
|
|
|
|
});
|
|
</script>
|
|
</head>
|
|
{% include 'include/navblock.html' %}
|
|
<h1>Settings for {{ account_info.1 }}!</h1>
|
|
|
|
<div id='body'>
|
|
<div id='accountInfoBlock'>
|
|
<div class='uid'>User ID: {{ account_info.0 }}</div>
|
|
<div class='namefield'>Name: <input type='text' id='email' value='{{ account_info.1 }}' /></div>
|
|
<div class='emailfield'>Email: {{ account_info.2 }}</div>
|
|
<div class='creationTime'>Account created on {{ account_info.6 }}</div>
|
|
<div class='largeField'><h3>Google Info</h3></div>
|
|
<div class='googleID'>Google ID: {{ user_info.id }}</div>
|
|
</div>
|
|
Your active DIDs: (Click number to access messaging)
|
|
<ul>
|
|
{% for item in dids %}
|
|
<li><a href='/single/{{ item[0] }}'>{{ item[0] }}</a></li>
|
|
{% endfor %}
|
|
</ul>
|
|
</div>
|
|
{% include 'include/footer.html' %}
|
|
|