HTMLify
home.html
Views: 505 | Author: abh
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 | <h1>HTMLify your dreams</h1> <center><p>Make your HTML files live</p> <form class="search-form" action="/search" method="GET" style="margin:20p;"> <input type="text" name="q" value="{{ q }}"/> <input type="submit" value="Search" /> </form> </center> <a href="/login">Log in</a> <a href="/registration">Register</a> <a href="/dashboard">Dashboard</a> <h1>Latest Files created on HTMLify</h1> <table> {% for file in files %} <tr> <td>{{ file.id }}</td> <td>{{ file.name }}</td> <td><a href="{{ file.path }}">View</a></td> <td>{{ file.owner }}</td> </tr> {% endfor %} </table> |