abh - HTMLify profile

abh
501 Files
101953 Views
Latest files of /abh/HTMLify/templates
<meta name="viewport" content="width=device-width, initial-scale=1">
<style>
/* registration page style*/
.registration-form {
background-color: #ffffff;
<style>
/* registration page style*/
.registration-form {
background-color: #ffffff;
<!DOCTYPE html>
<html>
<head>
<title>Login</title>
{% include "stylesheet.html" %}
<style>
</style>
<html>
<head>
<title>Login</title>
{% include "stylesheet.html" %}
<style>
</style>
<!DOCTYPE html>
<html>
<head>
<title>Media Upload</title>
{% include "stylesheet.html" %}
<style>
</style>
</head>
<html>
<head>
<title>Media Upload</title>
{% include "stylesheet.html" %}
<style>
</style>
</head>
<!DOCTYPE html>
<html>
<head>
<title>Registration</title>
{% include "stylesheet.html" %}
<style>
</style>
<html>
<head>
<title>Registration</title>
{% include "stylesheet.html" %}
<style>
</style>
<!DOCTYPE html>
<html>
<head>
<title>HTMLify your dreams</title>
{% include "stylesheet.html" %}
</head>
<body>
<h1>HTMLify your dreams</h1>
<html>
<head>
<title>HTMLify your dreams</title>
{% include "stylesheet.html" %}
</head>
<body>
<h1>HTMLify your dreams</h1>
<!DOCTYPE html>
<html>
<head>
<title>Editing - {{ path }}</title>
{% include "stylesheet.html" %}
<link rel="stylesheet" src="/pygments.css" />
<style>
<html>
<head>
<title>Editing - {{ path }}</title>
{% include "stylesheet.html" %}
<link rel="stylesheet" src="/pygments.css" />
<style>
<!-- Extras file, containts of this file will be available in all templates just above </head> -->
<!-- search-result.html -->
<!DOCTYPE html>
<html>
<head>
<title>HTMLify Search - {{ q }}</title>
{% include "stylesheet.html" %}
<style>
</style>
<!DOCTYPE html>
<html>
<head>
<title>HTMLify Search - {{ q }}</title>
{% include "stylesheet.html" %}
<style>
</style>
<!DOCTYPE html>
<html>
<head>
<title>Editing - {{ path }}</title>
{% include "stylesheet.html" %}
</head>
<body>
<h1>Editing - {{ path }}</h1>
<html>
<head>
<title>Editing - {{ path }}</title>
{% include "stylesheet.html" %}
</head>
<body>
<h1>Editing - {{ path }}</h1>
<div class="search-form">
<form action="/search" method="GET">
<input type="text" name="q" value="{{ q }}" placeholder="Search"/>
<input type="submit" value="Search" />
{% if request.url.split("/")[3].split("?")[0] == "search" %}
<br>Search for:
<input type="checkbox" name="file-type" id="text-type" value="text" />
<label for="text-type">Text</label>
<form action="/search" method="GET">
<input type="text" name="q" value="{{ q }}" placeholder="Search"/>
<input type="submit" value="Search" />
{% if request.url.split("/")[3].split("?")[0] == "search" %}
<br>Search for:
<input type="checkbox" name="file-type" id="text-type" value="text" />
<label for="text-type">Text</label>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Notifications</title>
{% include "stylesheet.html" %}
</head>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Notifications</title>
{% include "stylesheet.html" %}
</head>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>{{ user.username }} | HTMLify profile</title>
{% include "stylesheet.html" %}
</head>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>{{ user.username }} | HTMLify profile</title>
{% include "stylesheet.html" %}
</head>
<!-- user-files.html -->
{% for file in files %}
{{ loop.index }}<a href=" {{ file.path }}">{{ file.name }}</a> {{ file.size }}<br>
{% endfor %}
{% for file in files %}
{{ loop.index }}<a href=" {{ file.path }}">{{ file.name }}</a> {{ file.size }}<br>
{% endfor %}
<!DOCTYPE html>
<html>
<head>
<title>File is locked</title>
{% include "stylesheet.html" %}
</head>
<body>
<h1>HTMLify your dreams</h1>
<html>
<head>
<title>File is locked</title>
{% include "stylesheet.html" %}
</head>
<body>
<h1>HTMLify your dreams</h1>
<!DOCTYPE html>
<html>
<head>
<title>{{ file.name }}</title>
{% include "stylesheet.html" %}
<link rel="stylesheet" href="/pygments.css">
<style>
<!DOCTYPE html>
<html>
<head>
<title>Git Clone</title>
{% include 'stylesheet.html' %}
<style>
</style>
<html>
<head>
<title>Git Clone</title>
{% include 'stylesheet.html' %}
<style>
</style>
<div class="links">
<a href="/">Home</a>
{% if not session.get("user") %}
<a href="/login">Log in</a>
<a href="/registration">Register</a>
{% else %}
<a href="/action/logout">Log out</a>
<a href="/notifications" >Notifications
<a href="/">Home</a>
{% if not session.get("user") %}
<a href="/login">Log in</a>
<a href="/registration">Register</a>
{% else %}
<a href="/action/logout">Log out</a>
<a href="/notifications" >Notifications
<!DOCTYPE html>
<html>
<head>
<title>Dashboard - {{ session["user"]["username"] }}</title>
{% include "stylesheet.html" %}
<style>
</style>
</head>
<html>
<head>
<title>Dashboard - {{ session["user"]["username"] }}</title>
{% include "stylesheet.html" %}
<style>
</style>
</head>
<!--conferm-delete.html-->
<h1>Do you really want to delete the file {{ file.name }} at {{ file.path }}?</h1>
{% if file.type in imagefiletypes %}
<img src="{{ file.path }}">
{% else %}
<textarea style="height:80%;width:90%;margin:auto;"readonly>{% if file.type == "text" %}{{ file.content }}{% else %}{{ file.name }}{% endif %}</textarea><br>
<form action="/action/delete" method="POST">
<input type="hidden" name="id" value="{{ file.id }}">
<h1>Do you really want to delete the file {{ file.name }} at {{ file.path }}?</h1>
{% if file.type in imagefiletypes %}
<img src="{{ file.path }}">
{% else %}
<textarea style="height:80%;width:90%;margin:auto;"readonly>{% if file.type == "text" %}{{ file.content }}{% else %}{{ file.name }}{% endif %}</textarea><br>
<form action="/action/delete" method="POST">
<input type="hidden" name="id" value="{{ file.id }}">