PHP Classes

File: docs/templates/default/index.add.html.twig

Recommend this page to a friend!
  Classes of milenmk   Simple PHP Password Manager   docs/templates/default/index.add.html.twig   Download  
File: docs/templates/default/index.add.html.twig
Role: Auxiliary data
Content type: text/plain
Description: Auxiliary data
Class: Simple PHP Password Manager
Application to store and retrieve user password
Author: By
Last change:
Date: 1 year ago
Size: 1,147 bytes
 

Contents

Class file image Download
{% extends 'base.html.twig' %} {% block body %} <script src="{{ main_url }}/themes/default/js/focus.input.js"></script> <form method="post"> <input type="hidden" name="action" value="create"/> <table class="table table-success table-striped table-responsive"> <thead> <tr> <th scope="col">{{ langs.trans('Label') }}</th> <th scope="col"></th> </tr> </thead> <tbody> <tr> <td> <label for="label"></label> <input type="text" name="label" id="label"/> </td> <td> <div class="d-grid gap-2 d-md-flex justify-content-md-end"> <input class="btn btn-info" type="submit" name="submit" value="{{ langs.trans('Confirm') }}"/> <input type="button" class="btn btn-danger" value="{{ langs.trans('Cancel') }}" onclick="javascript:history.go(-1)"> </div> </td> </tr> </tbody> </table> </form> {% endblock %}