Skip to content

Instantly share code, notes, and snippets.

@moisescastillo
Created September 30, 2021 17:56
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save moisescastillo/5817ff856e18c2508cb49a033ad6b9ee to your computer and use it in GitHub Desktop.
Save moisescastillo/5817ff856e18c2508cb49a033ad6b9ee to your computer and use it in GitHub Desktop.
To-Do App Appscript GS
<!DOCTYPE html>
<html>
<head>
<base target="_top">
<!-- Google Fonts -->
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&display=swap" rel="stylesheet">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap-icons@1.5.0/font/bootstrap-icons.css">
<?!= include('Style'); ?>
</head>
<body>
<section class="header">
<input type="text" id="tarea" class="" value="" maxlength="40">
<button id="registrar" class="primary radius"><i class="bi bi-plus-lg"></i></button>
</section>
<section id="listado"></section>
<template id="row">
<div class="content">
<div class="item text">
<a href="#" class="descripcion"></a>
</div>
<div class="item control">
<a href="#" class="borrar" title="Eliminar"><i class="bi bi-trash"></i></a>
</div>
<div>
</template>
<template id="alert">
<div class="alert success">
<i class="bi bi-info-circle-fill"></i>You have no activities
</div>
</template>
<?!= include('Javascript'); ?>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment