Move the profile image upload and delete button text into title attributes

This commit is contained in:
Kevin MacMartin 2018-04-25 01:34:59 -04:00
parent d7f3e449fb
commit bdaf63d3dd

View file

@ -20,8 +20,8 @@
<div class="image-buttons">
<input id="profile-image-upload" name="profile-image-upload" type="file" />
<label for="profile-image-upload" class="image-upload-button">Upload Profile Image</label>
<span id="profile-image-delete" class="image-delete-button {{ $profile_image === null ? 'inactive' : '' }}">Delete Profile Image</span>
<label for="profile-image-upload" class="image-upload-button" title="Upload Profile Image"></label>
<span id="profile-image-delete" class="image-delete-button {{ $profile_image === null ? 'inactive' : '' }}" title="Delete Profile Image"></span>
</div>
</form>
</div>