I have been struggling for 3 hours trying to change the placeholder color to graytext, but it's just not working. Here is the code I've been using:
<div class="form-group">
<label for="email">Email:</label>
<input type="email" class="form-control" id="email" placeholder="Email" style="background-color: white; color: gray; border: 1px solid gray;" placeholderstyle="color: gray;">
</div>
<div class="form-group">
<label for="password">Password:</label>
<input type="password" class="form-control" id="password" placeholder="Password" style="background-color: white; color: gray; border: 1px solid gray;" placeholderstyle="color: gray;">
</div>
Hopefully this code helps someone find a solution!