abh - HTMLify profile

abh's Profile Picture

abh

501 Files

101953 Views

Latest files of /abh/HTMLify/templates

skeletons/ abh/HTMLify/templates/skeletons/
10 Items
  • login.html
  • file-upload.html
  • registration.html
  • home.html
  • edit.html
  • search-result.html
  • media-edit.html
  • user-files.html
  • stylesheet.html abh/HTMLify/templates/stylesheet.html
    317 Views
    0 Comments
    <meta name="viewport" content="width=device-width, initial-scale=1">
    <style>



    /* registration page style*/
    .registration-form {
    background-color: #ffffff;
    login.html abh/HTMLify/templates/login.html
    313 Views
    0 Comments
    <!DOCTYPE html>
    <html>
    <head>
    <title>Login</title>
    {% include "stylesheet.html" %}
    <style>

    </style>
    file-upload.html abh/HTMLify/templates/file-upload.html
    302 Views
    0 Comments
    <!DOCTYPE html>
    <html>
    <head>
    <title>Media Upload</title>
    {% include "stylesheet.html" %}
    <style>
    </style>
    </head>
    registration.html abh/HTMLify/templates/registration.html
    398 Views
    0 Comments
    <!DOCTYPE html>
    <html>
    <head>
    <title>Registration</title>
    {% include "stylesheet.html" %}
    <style>

    </style>
    home.html abh/HTMLify/templates/home.html
    315 Views
    0 Comments
    <!DOCTYPE html>
    <html>
    <head>
    <title>HTMLify your dreams</title>
    {% include "stylesheet.html" %}
    </head>
    <body>
    <h1>HTMLify your dreams</h1>
    edit.html abh/HTMLify/templates/edit.html
    362 Views
    0 Comments
    <!DOCTYPE html>
    <html>
    <head>
    <title>Editing - {{ path }}</title>
    {% include "stylesheet.html" %}
    <link rel="stylesheet" src="/pygments.css" />
    <style>

    extras.html abh/HTMLify/templates/extras.html
    295 Views
    0 Comments
    <!-- Extras file, containts of this file will be available in all templates just above </head> -->
    search-result.html abh/HTMLify/templates/search-result.html
    304 Views
    0 Comments
    <!-- search-result.html -->
    <!DOCTYPE html>
    <html>
    <head>
    <title>HTMLify Search - {{ q }}</title>
    {% include "stylesheet.html" %}
    <style>
    </style>
    media-edit.html abh/HTMLify/templates/media-edit.html
    314 Views
    0 Comments
    <!DOCTYPE html>
    <html>
    <head>
    <title>Editing - {{ path }}</title>
    {% include "stylesheet.html" %}
    </head>
    <body>
    <h1>Editing - {{ path }}</h1>
    search-bar.html abh/HTMLify/templates/search-bar.html
    348 Views
    0 Comments
    <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>
    notifications.html abh/HTMLify/templates/notifications.html
    296 Views
    0 Comments
    <!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>
    profile.html abh/HTMLify/templates/profile.html
    328 Views
    0 Comments
    <!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>
    user-files.html abh/HTMLify/templates/user-files.html
    380 Views
    0 Comments
    <!-- user-files.html -->
    {% for file in files %}
    {{ loop.index }}<a href=" {{ file.path }}">{{ file.name }}</a> {{ file.size }}<br>
    {% endfor %}
    locked-file.html abh/HTMLify/templates/locked-file.html
    354 Views
    0 Comments
    <!DOCTYPE html>
    <html>
    <head>
    <title>File is locked</title>
    {% include "stylesheet.html" %}
    </head>
    <body>
    <h1>HTMLify your dreams</h1>
    file-show.html abh/HTMLify/templates/file-show.html
    326 Views
    0 Comments

    <!DOCTYPE html>
    <html>
    <head>
    <title>{{ file.name }}</title>
    {% include "stylesheet.html" %}
    <link rel="stylesheet" href="/pygments.css">
    <style>
    git-clone.html abh/HTMLify/templates/git-clone.html
    328 Views
    0 Comments
    <!DOCTYPE html>
    <html>
    <head>
    <title>Git Clone</title>
    {% include 'stylesheet.html' %}
    <style>

    </style>
    nav-bar.html abh/HTMLify/templates/nav-bar.html
    298 Views
    0 Comments
    <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
    dashboard.html abh/HTMLify/templates/dashboard.html
    341 Views
    0 Comments
    <!DOCTYPE html>
    <html>
    <head>
    <title>Dashboard - {{ session["user"]["username"] }}</title>
    {% include "stylesheet.html" %}
    <style>
    </style>
    </head>
    conferm-delete.html abh/HTMLify/templates/conferm-delete.html
    324 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 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 }}">