Files
nostash/Shared (Extension)/Resources/options.html
2023-01-23 23:21:17 -05:00

23 lines
616 B
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="options.build.css">
<script defer src="options.build.js"></script>
</head>
<body x-data="options" class="text-fuchsia-900 bg-fuchsia-400">
<h1 class="text-6xl font-bold">Settings</h1>
<select x-model.number="profileIndex" name="profiles" id="profiles">
<template x-for="(profileName, index) in profileNames" :key="profileName">
<option x-text="profileName" :value="index"></option>
</template>
</select>
</body>
</html>