new app store links feature
This commit is contained in:
@@ -154,6 +154,36 @@
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<!-- Mobile App -->
|
||||
<div class="form-section">
|
||||
<h3>Mobile App</h3>
|
||||
|
||||
<h4>Google Play Store</h4>
|
||||
<div class="form-group">
|
||||
<label for="play_store_icon_url">Play Store Badge (PNG)</label>
|
||||
<div class="url-with-upload">
|
||||
<input id="play_store_icon_url" type="text" [(ngModel)]="play_store_icon_url" name="play_store_icon_url"
|
||||
placeholder="uploads/…">
|
||||
<label class="btn btn-upload">
|
||||
Upload
|
||||
<input type="file" accept="image/png" (change)="onImageUpload($event, 'play_store_icon_url')" [disabled]="loading">
|
||||
</label>
|
||||
</div>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label for="play_store_url">Play Store URL</label>
|
||||
<input id="play_store_url" type="url" [(ngModel)]="play_store_url" name="play_store_url"
|
||||
placeholder="https://play.google.com/store/apps/details?id=…">
|
||||
</div>
|
||||
|
||||
<h4>Apple App Store</h4>
|
||||
<div class="form-group">
|
||||
<label for="app_store_embed_html">App Store Embed HTML</label>
|
||||
<textarea id="app_store_embed_html" [(ngModel)]="app_store_embed_html" name="app_store_embed_html"
|
||||
rows="6" placeholder="Paste the embed HTML from Apple Marketing Resources"></textarea>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="form-actions">
|
||||
<button type="button" class="btn btn-cancel" (click)="onClose()">Cancel</button>
|
||||
<button type="submit" class="btn btn-save" [disabled]="saving">
|
||||
|
||||
Reference in New Issue
Block a user