Add minimal add-in playgrounds and orchestrator
This commit is contained in:
@@ -0,0 +1,30 @@
|
||||
<!doctype html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="utf-8" />
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
||||
<title>Minimal Playground Add-in</title>
|
||||
<link rel="stylesheet" href="/taskpane.css" />
|
||||
<!-- Office.js is REQUIRED for Office Add-ins -->
|
||||
<script src="https://appsforoffice.microsoft.com/lib/1.1/hosted/office.js" type="text/javascript"></script>
|
||||
</head>
|
||||
<body>
|
||||
<div class="container">
|
||||
<header>
|
||||
<h1>Minimal Playground Add-in</h1>
|
||||
<p class="muted">One button → generates Managers Info PDF & uploads to SharePoint</p>
|
||||
</header>
|
||||
|
||||
<main>
|
||||
<button id="uploadBtn" class="primary">Upload Managers Info</button>
|
||||
<div id="status" aria-live="polite"></div>
|
||||
</main>
|
||||
|
||||
<footer>
|
||||
<small>Dev only — runs locally against the playground server</small>
|
||||
</footer>
|
||||
</div>
|
||||
<script src="/taskpane.js"></script>
|
||||
</body>
|
||||
</html>
|
||||
Reference in New Issue
Block a user