You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
56 lines
2.2 KiB
56 lines
2.2 KiB
<!DOCTYPE html>
|
|
<html lang="en">
|
|
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<link rel="apple-touch-icon" sizes="180x180" href="./apple-touch-icon.png">
|
|
<link rel="icon" type="image/png" sizes="32x32" href="./favicon-32x32.png">
|
|
<link rel="icon" type="image/png" sizes="16x16" href="./favicon-16x16.png">
|
|
<link rel="manifest" href="./site.webmanifest">
|
|
<script type="module" src="https://cdn.jsdelivr.net/npm/@ionic/core/dist/ionic/ionic.esm.js"></script>
|
|
<script nomodule src="https://cdn.jsdelivr.net/npm/@ionic/core/dist/ionic/ionic.js"></script>
|
|
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/@ionic/core/css/ionic.bundle.css" />
|
|
<link rel="stylesheet" href="style.css">
|
|
<title>Photo voter</title>
|
|
</head>
|
|
|
|
<body>
|
|
<ion-app>
|
|
<ion-content>
|
|
<img id="candidate" src="" alt="Image for vote">
|
|
<ion-grid id="buttons">
|
|
<ion-row>
|
|
<ion-col size="2">
|
|
<ion-fab vertical="bottom" horizontal="start">
|
|
<ion-fab-button id="help" size="small" color="light" disabled>
|
|
<ion-icon name="help-sharp"></ion-icon>
|
|
</ion-fab-button>
|
|
</ion-fab>
|
|
|
|
</ion-col>
|
|
<ion-col size="5">
|
|
<ion-fab vertical="bottom" horizontal="end">
|
|
<ion-fab-button id="dislike">
|
|
<ion-icon name="thumbs-down-sharp"></ion-icon>
|
|
</ion-fab-button>
|
|
</ion-fab>
|
|
|
|
</ion-col>
|
|
<ion-col size="5">
|
|
<ion-fab vertical="bottom" horizontal="start">
|
|
<ion-fab-button id="like" color="success">
|
|
<ion-icon name="thumbs-up-sharp"></ion-icon>
|
|
</ion-fab-button>
|
|
</ion-fab>
|
|
</ion-col>
|
|
</ion-row>
|
|
</div>
|
|
|
|
</ion-content>
|
|
</ion-app>
|
|
|
|
<script src="app.js"></script>
|
|
</body>
|
|
|
|
</html> |