SMS-proj is a project to send receive SMS messages.
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.
|
|
|
<!DOCTYPE html>
|
|
|
|
<html>
|
|
|
|
<head>
|
|
|
|
{% include 'include/header.html' %}
|
|
|
|
<title> {{ name }}'s Settings </title>
|
|
|
|
<script type="text/javascript">
|
|
|
|
$("document").ready(function() {
|
|
|
|
|
|
|
|
});
|
|
|
|
</script>
|
|
|
|
</head>
|
|
|
|
<body>
|
|
|
|
<h1>Settings for {{ name }}!</h1>
|
|
|
|
|
|
|
|
<div id='body'>
|
|
|
|
<div id='accountInfoBlock'>
|
|
|
|
<div class='namefield'>Name: <input type='text' id='email' value='{{ name }}' /></div>
|
|
|
|
<div class='emailfield'>Email: {{ email }}</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' %}
|
|
|
|
</body>
|
|
|
|
</html>
|