Dashboard Temp Share Shortlinks Frames API

abh - HTMLify profile

files of /abh/HTMLify/templates/

conferm-delete.html /abh/HTMLify/templates/conferm-delete.html
485 Views
0 Comments
<!--conferm-delete.html-->
<h1>Do you really want to delete the file {{ file.name }} at {{ file.path }}?</h1>
{% if file.type in
dashboard.html /abh/HTMLify/templates/dashboard.html
504 Views
0 Comments
<!DOCTYPE html>
<html>
<head>
<title>Dashboard - {{ session["user"]["username"] }}</title>
{% include "stylesheet.html"
edit.html /abh/HTMLify/templates/edit.html
512 Views
0 Comments
<!DOCTYPE html>
<html>
<head>
<title>Editing - {{ path }}</title>
{% include "stylesheet.html" %}
<link rel="styleshee
extras.html /abh/HTMLify/templates/extras.html
439 Views
0 Comments
<!-- Extras file, containts of this file will be available in all templates just above </head> -->
file-show.html /abh/HTMLify/templates/file-show.html
499 Views
0 Comments

<!DOCTYPE html>
<html>
<head>
<title>{{ file.name }}</title>
{% include "stylesheet.html" %}
<link rel="stylesheet"
file-upload.html /abh/HTMLify/templates/file-upload.html
461 Views
0 Comments
<!DOCTYPE html>
<html>
<head>
<title>Media Upload</title>
{% include "stylesheet.html" %}
<style>
</style>
</hea
git-clone.html /abh/HTMLify/templates/git-clone.html
483 Views
0 Comments
<!DOCTYPE html>
<html>
<head>
<title>Git Clone</title>
{% include 'stylesheet.html' %}
<style>

</style>
home.html /abh/HTMLify/templates/home.html
474 Views
0 Comments
<!DOCTYPE html>
<html>
<head>
<title>HTMLify your dreams</title>
{% include "stylesheet.html" %}
</head>
<body>
<h1>
locked-file.html /abh/HTMLify/templates/locked-file.html
548 Views
0 Comments
<!DOCTYPE html>
<html>
<head>
<title>File is locked</title>
{% include "stylesheet.html" %}
</head>
<body>
<h1>HTMLi
login.html /abh/HTMLify/templates/login.html
509 Views
0 Comments
<!DOCTYPE html>
<html>
<head>
<title>Login</title>
{% include "stylesheet.html" %}
<style>

</style>
media-edit.html /abh/HTMLify/templates/media-edit.html
455 Views
0 Comments
<!DOCTYPE html>
<html>
<head>
<title>Editing - {{ path }}</title>
{% include "stylesheet.html" %}
</head>
<body>
<h1
nav-bar.html /abh/HTMLify/templates/nav-bar.html
463 Views
0 Comments
<div class="links">
<a href="/">Home</a>
{% if not session.get("user") %}
<a href="/login">Log in</a>
<a href="/regist
notifications.html /abh/HTMLify/templates/notifications.html
450 Views
0 Comments
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=
profile.html /abh/HTMLify/templates/profile.html
473 Views
0 Comments
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initia
registration.html /abh/HTMLify/templates/registration.html
585 Views
0 Comments
<!DOCTYPE html>
<html>
<head>
<title>Registration</title>
{% include "stylesheet.html" %}
<style>

</style>
search-bar.html /abh/HTMLify/templates/search-bar.html
475 Views
0 Comments
<div class="search-form">
<form action="/search" method="GET">
<input type="text" name="q" value="{{ q }}" placehold
search-result.html /abh/HTMLify/templates/search-result.html
416 Views
0 Comments
<!-- search-result.html -->
<!DOCTYPE html>
<html>
<head>
<title>HTMLify Search - {{ q }}</title>
{% include "stylesheet
skeletons /abh/HTMLify/templates/skeletons/
10 Items
  • conferm-delete.html
  • dashboard.html
  • edit.html
  • file-upload.html
  • home.html
  • login.html
  • media-edit.html
  • registration.html
  • stylesheet.html /abh/HTMLify/templates/stylesheet.html
    490 Views
    0 Comments
    <meta name="viewport" content="width=device-width, initial-scale=1">
    <style>



    /* registration page style*/
    .registration-form
    user-files.html /abh/HTMLify/templates/user-files.html
    554 Views
    0 Comments
    <!-- user-files.html -->
    {% for file in files %}
    {{ loop.index }}<a href=" {{ file.path }}">{{ file.name }}</a> {{ file.size }}<